I got a front-end designer to write tons of html form for me. Is there any free tool for cre开发者_如何学运维ating database (mysql prefered) tables from existing html forms automatically? Names and datatypes of table fields would be generated based on names and types of form elements.
That would be quite difficult with traditional relational databases like MySQL, where you would have to define a schema for your database before being in a position to insert and manipulate data. The schema has to define all the column names, as well as their datatypes.
All this is very difficult to auto-generate from an HTML form.
精彩评论