The class builder helps to create your database abstraction layer. The method is simple. Upload your MySQL schema and the dbClassBuilder will create SELECT, INSERT, and UPDATE functions in PHP for each of your table definitions. One-click code generator.

Choose a MySQL schema:

Here's a quick example of how you can get a mysql schema nice and quickly from the shell:

Either one of these will work:

shell> mysqldump db_name [tables] -d > name_of_mysql_schema.sql
shell> mysqldump --databases database_name -d > name_of_mysql_schema.sql
shell> mysqldump --all-databases -d > databases.sql


for further instructions on mysqldump(), please click here.

contact me