mysqldump-php icon indicating copy to clipboard operation
mysqldump-php copied to clipboard

PHP version of mysqldump cli that comes with MySQL

Results 63 mysqldump-php issues
Sort by recently updated
recently updated
newest added

MySQLDump-PHP version 2.12 Export settings: ```php $dumpSettings = [ 'include-tables' => $tables, 'add-drop-table' => true, 'default-character-set' => \Ifsnop\Mysqldump\Mysqldump::UTF8MB4, 'routines' => true, ]; ``` When I export with functions, or routines....

## Problem Description https://github.com/ifsnop/mysqldump-php/blob/2d3a43fc0c49f23bf7dee392b0dd1f8c799f89d3/src/Ifsnop/Mysqldump/Mysqldump.php#L302 This line does not work correctly with partitions in MySQL databases. ## Example If the SQL file contains a partitioned table like the one below: ```sql...

When using the `restore` method, sql files using changed delimiters (see bottom) seem to break ``` SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL...