infotech / mysql-data-dumper
Installs: 379
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 1
pkg:composer/infotech/mysql-data-dumper
Requires
- php: >=5.4.0
- ext-pdo: *
This package is not auto-updated.
Last update: 2025-10-11 22:46:55 UTC
README
Simple helper class that allows to backup and restore data from MySQL database.
$dumper = new Infotech\MysqlDataDumper\MysqlDataDumper(); $dumper->addConnection($pdoInstance); $dumper->backup(); // saves all rows from all tables of given connection(s) into memory // execute process that makes indirect data modifications $dumper->restore(); // restores saved data into database // execute another process $dumper->restore(); // restores the data again