mysql database browser
MySQL Database Server 5.1.35
MySQL Database Server is a versatile and innovative tool which is designed for enterprise organizations delivering business critical database applications. more>>
MySQL Database Server 5.1.35 is a versatile and innovative tool which is designed for enterprise organizations delivering business critical database applications. It gives corporate developers, DBAs and ISVs an array of new enterprise features to make more productive developing, deploying, and managing industrial strength applications. If you need a GUI for MySQL Database, you can download - NAVICAT (MySQL GUI). It supports to import Oracle, MS SQL, MS Access, Excel, CSV, XML or other formats to MySQL.
MySQL Database Server delivers new enterprise features, including: ACID Transactions to build reliable and secure business critical applications. Stored procedures to improve developer productivity. Triggers to enforce complex business rules at the database level. Views to ensure sensitive information is not compromised. Information schema to provide easy access to metadata. Distributed transactions (XA) to support complex transactions across multiple databases.
MySQL Query Browser 1.1.18
MySQL Query Browser - MySQL graphical shell more>>
MySQL Query Browser is the easiest visual tool for creating, executing, and optimizing SQL queries for your MySQL Database Server.
The MySQL Query Browser gives you a complete set of drag-and-drop tools to visually build, analyze and manage your queries.
Main features:
- Query Toolbar to easily create and execute queries and navigate query history
- Script Editor giving you control to manually create or edit SQL statements
- Results Window so you can also easily compare and work with multiple queries
- Object Browser enabling you to manage your databases, bookmarks, and history using a Web Browser like interface
- Database Explorer where you can select tables and fields to query, as well as create and delete tables
- Table Editor allows you easily create, modify and delete tables
- Inline Help giving you instant help access to selected objects, parameters, and functions.
Enhancements:
- This is a maintenance release of the production MySQL Query Browser for Mac OS X.
Mysql Table Syncer 0.2.0
A script/executable to synchronize the contents of databases more>> A script/executable to synchronize the contents of databases
Mysql Table Syncer is a free Ruby script that will help its users to synchronize their database contents a lot easier than before.
Enhancements:
- Now prompts you if you use --commit [so you dont do it on accident]
- Minor code cleanups
Simple Image Browser 2.1
Image archive browser. more>>

Find Database Tables 1.0
Find Database Tables is the right solution if you have a bunch of MySQL tables in your database that you arent sure if you use anymore while finding them can be tough and daunting and youre afraid to delete any because that one obscure script you wrote years ago may still use it. more>>
Find Database Tables 1.0 is the right solution if you have a bunch of MySQL tables in your database that you aren't sure if you use anymore while finding them can be tough and daunting and you're afraid to delete any because that one obscure script you wrote years ago may still use it. Simply log onto your database sever, select your database, select the folder that has your scripts, and let Find Database Tables do the searching for you!
Major Features:
- Fast Searching
- View the table data - make sure if you really want to delete the table or not
- View the scripts where a table was found
- Drop unwanted tables right from the application
- Export the results to a CSV file that can be used in any spreadsheet application
- Can view table data, scripts, and delete tables while the searching is going on
House Browser 1.0
House Browser - The last twenty updated properties Marvins estate agency group database more>> House Browser - The last twenty updated properties Marvins estate agency group database
The House Browser widget displays the Marvins, Isle of Wight, property reference number, price, location, date added to the database, photograph and brief property description - an available link then takes the user off to the Marvins website for more detailed information on the illustrated home.
Enhancements
- Universal Binary Dashboard Widget.
H2 Database Engine 1.1.113
An SQL database engine written in Java more>> An SQL database engine written in Java
H2 is an SQL database engine written in Java (but also available as a native binary). JDBC and ODBC APIs are supported.
Embedded and server modes are available. A Web console application is included. Clustering is supported.
H2 Database Engine is a web based java database engine.
Main features:
- Fast database engine
- Free, source code is included
- Supports standard SQL
- Written in Java
- Disk based or in-memory databases
- Browser base Console application
- JDBC API
- Limited ODBC support
- Embedded and client/server (network) mode
- High availablility support (clustering / failover)
- Wide range of data types including large objects (BLOB/CLOB)
- Strong security features (SSL, users, roles, encrypted files)
- Multiple connections, table level locking
- Cost based optimizer, using a genetic algorithm for complex queries
- Transaction support (serializable transaction isolation)
- Zero-administration, automatic recovery
- Large resultset, external sorting
- Scrollable and updatable resultset support
- Read only views and inline views
- Inner and outer joins, subqueries
- Many functions already built-in
- Triggers and Java functions / stored procedures
- Referential integrity / foreign key constraints with cascade, check constraints
- Multiple schema support
- Compatibility modes for HSQLDB, MySQL and PostgreSQL
- Sequence and autoincrement columns
- Well tested (high code coverage, randomized stress tests)
- Small footprint (smaller than 1 MB)
- Uses a small number of database files
- Can be compiled to native code using GCJ
- Primary keys, multiple index types (b-tree, linear hash, tree, hash)
- ORDER BY, GROUP BY, HAVING, UNION, LIMIT
- Information Schema
- Multiple connections
- Collation support
- EXPLAIN PLAN support
- The database can generate SQL script files
- Support for linked tables, and a built-in virtual range table
- Automatic re-compilation of prepared statements
- Sophisticated trace options
- Low memory requirements
- Easy to understand exception messages
- Standard handling of NULL values
- Multilanguage console application (at this time, English and German).
Enhancements
- Shell tool: the built-in commands EXIT, HELP, ?, LIST, and so on didnt work with a semicolon at the end.
- JDK 1.5 is now required to build the jar file. However it is still possible to create a jar file for Java 1.4. For details, see buildRelease.sh and buildRelease.bat. As an alternative, compile using JDK 1.5 or 1.6 and use Retrotranslator to create a Java 1.4 version http://retrotranslator.sourceforge.net/).
- When deleting or updating many rows in a table, the space in the index file was not re-used in the default mode (persistent database, b-tree index, LOG=1). This caused the index file to grow over time. Workarounds were to delete and re-created the index file, alter the table (add a remove a column), or append ;LOG=2 to the database URL. To disable the change, set the system property h2.reuseSpaceBtreeIndex to false.
- Identifiers with a digit and then a dollar sign didnt work. Example: A1$B.
- MS SQL Server compatibility: support for linked tables with NVARCHAR, NCHAR, NCLOB, and LONGNVARCHAR.
- Android: Workaround for a problem when using read-only databases in zip files (skip seems to be implemented incorrectly on the Android system).
- Calling execute() or prepareStatement() with null as the SQL statement now throws an exception.
- Benchmark: the number of executed statements was incorrect. The H2 database was loaded at the beginning of the test to collect results, now it is loaded at the very end. Thanks to Fred Toussi from HSQLDB for reporting those problems. However the changed do not affect the relative performance.
- H2 Console: command line settings are no longer stored in the properties file. They are now only used for the current process, except if they are explicitly saved.
- Cache: support for a second level soft-references cache. To enable it, append ;CACHE_TYPE=SOFT_LRU (or SOFT_TQ) to the database URL, or set the system property h2.cacheTypeDefault to "SOFT_LRU" / "SOFT_TQ". Enabling the second level cache reduces performance for small databases, but speeds up large databases. It makes sense to use it if the available memory size is unknown. Thanks a lot to Jan Kotek!
Safari Browser Check 1.0
Safari Browser Check a small JavaScript that will display a custom graphic if the visitor of your website is surfing with more>> Safari Browser Check a small JavaScript that will display a custom graphic if the visitor of your website is surfing with Safari.<<less
MySQL BackUp 1.1
MySQLDump backup app. more>>
MP3 Browser 0.97
MP3 Browser is a distinguished and tractable tool which can organize your MP3 collection in a simple way. more>>
MP3 Browser 0.97 is a distinguished and tractable tool which helps you to organize your MP3 collection in a simple way. It tries to generate the Tags out of the filename or you can generate the filename out of the tags. Also a database is included to be on top of your collection.
Appleworks Database Files 1.0
Appleworks database for software & hardware inventory. more>>
Cocoa Browser 2.8
Cocoa Browser - Cocoa API reference browser more>>
Cocoa Browser is NOT designed as a general purpose web browser. You need to install Apples developer tools to use it.
MySQL Administrator 1.1.10
MySQL Administrator - Graphically administer your MySQL environment more>>
Enhancements:
- This is a maintenance release of MySQL Administrator with improved stability.
MySQL GUI Tools 5.0r12
MySQL GUI Tools - Administration tools for MySQL more>>
MySQL Administrator now integrates database management and maintenance into a single, seamless environment, with a clear and intuitive graphical user interface.
Gift Management Database 1.0
Gift Management Database - Tutorial using Cocoa, ODBC, MySQL more>>
This package includes all source code needed to build a complete application for managing presents and gifts. With this tutorial everyone can start to create a complete commercial application using databases.
You can manage person, gift and recurrence tables, meaning that you can create, modify, delete and print database information for Person, Gifts and so on.