2017 © Pedro Peláez
 

library mysql-data-dumper

image

infotech/mysql-data-dumper

  • Monday, April 27, 2015
  • by AntonTyutin
  • Repository
  • 2 Watchers
  • 2 Stars
  • 364 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

MysqlDataDumper

Simple helper class that allows to backup and restore data from MySQL database., (*1)

$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

The Versions

27/04 2015

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *

 

27/04 2015

v0.1.1

0.1.1.0

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *

 

20/02 2015

v0.1.0

0.1.0.0

  Sources   Download

MIT

The Requires

  • php >=5.4.0
  • ext-pdo *