vote up 2 vote down star
3

Hey everyone, Does anyone know a good (preferably open source and cross platform) tool to allow simple visualization of mysql databases? I just need a tool I can quickly point at a database and it'll show basic table structure and field types, etc. Nothing too advanced or crazy.

flag

4 Answers

vote up 3 vote down check

MySQL Workbench runs on Windows and Linux. The commercial version will let you reverse engineer and edit the stucture of a live database, with the free one you have first to dump the structure to a file. Its ancestor DBDesigner is a bit older, but doesn't have this limitation. Windows and Linux too.

If these two are overkill you may try with HeidiSQL, the descendant of MySQLFront. It runs on Windows only, but there is an alpha version running on Java.

link|flag
vote up 4 vote down

I really like Sqlyog on Windows. It is (technically) open source, but not cross-platform. (Scroll down to "community edition")

If your requirements are open source, simple, and cross-platform, hav eyou considered setting up a website with phpMyAdmin?

link|flag
I do that already. I generally set up apache virtual hosts for dev sites and they all use a single mysql instance which is managed via phpmyadmin. Only problem is phpmyadmin is slow and clunky, I was looking for something client side, lightweight, and more of a graphical view of the tables.Thanks! – Michael Lasky Dec 12 '08 at 18:59
vote up 1 vote down

There's also MySQL Workbench. It's more for design, but would do what you ask. There's a free version which is a little crippled and I think it might be Windows only.

EDIT: There is a Linux version.

http://dev.mysql.com/downloads/workbench/5.1.html

link|flag
vote up 1 vote down

mysql-administrator

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.