2017 © Pedro Peláez
 

library mysqldump

MySQL database dump. Forked from https://github.com/dg/MySQL-dump

image

nurmanhabib/mysqldump

MySQL database dump. Forked from https://github.com/dg/MySQL-dump

  • Thursday, July 31, 2014
  • by nurmanhabib
  • Repository
  • 1 Watchers
  • 0 Stars
  • 19 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 27 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

MySQL Dump Utility

Forked from https://github.com/dg/MySQL-dump, (*1)

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., (*2)

It requires PHP 5.0.5 or later., (*3)

Usage

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

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

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

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

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

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

Project at GitHub: http://github.com/dg/MySQL-dump, (*7)

(c) David Grudl, 2008, 2013 (http://davidgrudl.com), (*8)

The Versions

31/07 2014

dev-master

9999999-dev

MySQL database dump. Forked from https://github.com/dg/MySQL-dump

  Sources   Download

BSD-3-Clause

mysql mysqldump

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