Is there any tool, which will take a set of CRUD queries, and generate a 'good enough' table schema for that set:
e.g. I can provide input like this:
insert username, password insert username, realname select password where username=? update password where username=? update realname where username=?
With this input, tool should be able to make either 1 or 2 or 3 table, take care of _id's, and indexing.
To put it alternatively, i'm looking for a tool, with which, i can design set of queries assuming a single infinite column table, and tool process and actually generates a number of database/tables/columns, and a high level language module with function calls to each of query.
oh yes , i'm trying to fire my db designer (-: