2017 © Pedro Peláez
 

library mysql-dump

MySQL database dump.

image

dg/mysql-dump

MySQL database dump.

  • Friday, June 22, 2018
  • by david@grudl.com
  • Repository
  • 10 Watchers
  • 112 Stars
  • 221,658 Installations
  • PHP
  • 12 Dependents
  • 0 Suggesters
  • 27 Forks
  • 2 Open issues
  • 7 Versions
  • 9 % Grown

The README.md

MySQL Dump Utility

This is a backup utility used to dump a database for backup or transfer to another MySQL server. The dump typically contains SQL statements to create the table, populate it, or both., (*1)

It requires PHP 5.6 (release 1.5) or PHP 7.1 or later., (*2)

Usage

Create MySQLi object and pass it to the MySQLDump:, (*3)

$db = new mysqli('localhost', 'root', 'password', 'database');
$dump = new MySQLDump($db);

You can optionally specify how each table or view should be exported:, (*4)

$dump->tables['search_cache'] = MySQLDump::DROP | MySQLDump::CREATE;
$dump->tables['log'] = MySQLDump::NONE;

Then simply call save() or write():, (*5)

$dump->save('export.sql.gz');

Import dump from file to database this way:, (*6)

$import = new MySQLImport($db);
$import->load('dump.sql.gz');

If you like it, please make a donation now. Thank you!, (*7)

The Versions

22/06 2018

dev-master

9999999-dev https://github.com/dg/MySQL-dump

MySQL database dump.

  Sources   Download

BSD-3-Clause

mysql

24/05 2017

v1.4.0

1.4.0.0 https://github.com/dg/MySQL-dump

MySQL database dump.

  Sources   Download

BSD-3-Clause

mysql

18/04 2015

v1.3.0

1.3.0.0 https://github.com/dg/MySQL-dump

MySQL database dump.

  Sources   Download

BSD-3-Clause

mysql

03/02 2014

v1.2.1

1.2.1.0 https://github.com/dg/MySQL-dump

MySQL database dump.

  Sources   Download

BSD-3

mysql

30/01 2014

v1.2.0

1.2.0.0 https://github.com/dg/MySQL-dump

MySQL database dump.

  Sources   Download

BSD-3

mysql

13/05 2013

v1.1.0

1.1.0.0 https://github.com/dg/MySQL-dump

MySQL database dump.

  Sources   Download

BSD-3

mysql

31/08 2012

v1.0.0

1.0.0.0 https://github.com/dg/MySQL-dump

MySQL database dump.

  Sources   Download

BSD-3

mysql