infotech/mysql-data-dumper

v0.1.1 2015-04-27 12:57 UTC

This package is not auto-updated.

Last update: 2024-09-28 17:12:35 UTC


README

这是一个简单的辅助类,允许从MySQL数据库备份和恢复数据。

$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