vote up 4 vote down star
5

I am quite happy to code out tables by hand when making a database but it's not the easiest way to convey information about a database to someone else, especially someone that's not so comfortable coding the tables via a script and would instead use something such at phpMyAdmin.

Is there thus a free program (for me to use it it'll have to work on a Mac but feel free to suggest PC apps for others with the same Q) or script (preferably in PHP or Python) that allows you to design database structure and will then output either a basic diagram or the code as chosen by the user?

flag

8 Answers

vote up 4 vote down check

Well on the PC you can use MS Visio to produce a DB Entity diagram.

It will even reverse engineer one from an existing Database.

A pain to set-up the first time you use it, but quite handy thereafter.

alt text

link|flag
vote up 3 vote down

I'm a big fan of ARGO UML from Tigris.org. Draws nice pictures using standard UML notation. It does some code generation, but mostly Java classes, which isn't SQL DDL, so that may not be close enough to what you want to do.

You can look at the Data Modeling Tools list and see if anything there is better than Argo UML. Many of the items on this list are free or cheap.

Also, if you're using Eclipse or NetBeans, there are many design plug-ins, some of which may have the features you're looking for.

link|flag
ArgoUML has a nice web start ability located at argouml-downloads.tigris.org/jws/…. Since it is Java-based it will run on nearly all platforms. – David Medinets Sep 23 '08 at 0:04
vote up 3 vote down

Open System Architect has some potential. Its very similar to Visio.

link|flag
codebydesign.com/SystemArchitect/downloads/… - there is a linux version. Unzip the gzipp'ed file then run bin/OpenSystemArchitect. If anyone can try this on a mac, I'd like to know the result. – David Medinets Sep 23 '08 at 0:24
vote up 2 vote down

You could try out MySQL Workbench which originates in the open source dbdesigner. There's a free community edition available. You can design the database via er-diagrams or reverse engineer an existing database.

link|flag
You can download this from dev.mysql.com/downloads/workbench/5.0.html. – David Medinets Sep 22 '08 at 23:55
Sadly it is only available for Windows. – David Medinets Sep 22 '08 at 23:56
vote up 2 vote down

I use the aptly named Database Design Tool. It's extremely simple and unfortunatly it's developed any more, however. It's the best tool I've come across that is free and at the end of designing your tables, it generates the T-SQL for you. It's also language independent.

alt text

link|flag
vote up 2 vote down

Dia (on linux or windows) has an ER Diagram set that suits my needs very well, but it won't turn your ER diagram into code like Visio or other things. I use it for documenting my existing Database.

If I'm going to make a new database I'll draw out tables by hand. I find it is easier than fiddling with connecting lines and anchor points in any of those ubiquitous database helper ute's.

link|flag
+1 very nice for Documentation. I really love it. Thank you! – bastianneu Sep 24 at 9:47
vote up 1 vote down

I always have enjoyed Eclipse. There are a few plugins for it that look like they will do what you want.

link|flag
vote up 1 vote down

SchemaBank (a web-based SaaS vendor) can turn your ER design into SQL statements for MySQL and PG. Can't do graphics export yet though. The nice thing is you don't need to install anything ('cos its browser-based) and it costs virtually nothing. You should be able to share your design to other people too.

link|flag

Your Answer

Get an OpenID
or

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