views:

323

answers:

1

I'm looking for something similar to the table creation form from phpmyadmin, but it should simply display a CREATE TABLE statement in a textarea below the form.
It should also not require MySQL, PHP, or even a server to work.

I want this for times I'm working on projects and just want to whip up a quick table definition. I'll more than likely always have a text editor open, so being able to save to file isn't a must-have.

I'm on Ubuntu and use Gnome. A tiny GTK application I could stick in my Applications menu would be ideal.

+1  A: 

It's not that hard to get familiar enough with the syntax that knocking out a table definition in a text editor becomes second nature.

However, check out DBDesigner4, which is a GPL application which might be useful to you.

Paul Dixon