Simple MySQL dump Support forum simmysqldump Dump a MySQL database as SQL statements This class can be used to dump a MySQL database as a list of SQL statements. It can retrieve the database tables metadata and execute and SQL SELECT query to retrieve all the data of the tables to be dumped. The ...
MySQL Dump - database backup Support forum cf_mysqldump Dump a MySQL database in a backup file This class can be used to backup a MySQL database. It queries a database and generates a list of SQL statements that can be used later to restore the database tables structure and their contents. The class ...
Easy MySQL Dump Support forum easymsqldumper Dump the structure and data of a MySQL database This class be used to dump the structure and data of a MySQL database to a backup file. It traverses the list of tables of a given MySQL database and generates the SQL statements that would be necessary ...
MySQL Dump Support forum mysqldump Generate a dump of information in a MySQL database This class can be used to generate a dump of the structure and data contained in a given MySQL database. It generates a string that contains of SQL statements that when executed can recreate the structure of tables ...
MySQL CSV Dump Support forum mysql-csv-dump Dump MySQL tables into compressed CSV files This class can be used to dump MySQL tables into compressed CSV files. It can query the values of the records of the tables of a given MySQL table and generate CSV files with table contents. By default it dumps ...
... database with just 2 lines of code. The dump can be used as a database backup. The dumps contain valid MySQL SQL queries. It does not require the mysqldump command line utility, so the class works even in servers on which this command is not available on the server. The dumps may generates with optional ...
... Innovation award nominee October 2009 MySQL is the most popular database used in PHP applications. To take backups of a MySQL database, there is the mysqldump command. There are also several classes that emulate the mysqldump in pure PHP code. This class provides a similar solution for taking backups ...
DB Schema Management Support forum dbmaintenece Dump and update MySQL database schemata This class can create, dump and update MySQL database schemata. It can connect to a given MySQL server and dump the schema of a database to a PHP script that defines the list of tables, fields and properties ...
... data-from-dump Extract table dumps from full MySQL database dumps Screenshot Screenshot PHP Programming Innovation award nominee September 2010 mysqldump is a tool for taking backups of MySQL databases. It is part of the distribution of MySQL. It works by generating SQL statements that can be used ...
This class can generate MySQL backup of files with SQL statements that can restore the database. It can traverse the list of tables of a given MySQL database and generates SQL statements that can recreate the tables and the values of the respective records. The generated SQL INSERT statements can insert ...