mysqldump-php
mysqldump-php copied to clipboard
PHP version of mysqldump cli that comes with MySQL
Thanks for the great library. Exports of [MariaDB's System-Versioned Tables](https://mariadb.com/kb/en/system-versioned-tables/) fail at the moment, but this little fix resolves it.
When hex-blob was specified and virtual columns of type blob or bit existed, produced dump file was invalid. Move the "virtual-column" case on the top of the getColumnStmt process to...
The `CompressGzipstream` uses some functions that were only added on PHP 7: ``` ---------------------------------------------------------------------- FOUND 6 ERRORS AFFECTING 3 LINES ---------------------------------------------------------------------- 1476 | ERROR | The function deflate_init() is not...
If I install the package via composer, it downloads the last release, 2.9, but there ara some commits after that release which aren't in that package. Maybe the release should...
I want to set specific columns value are dummy to some columns. like below [ '4111111111111111 as cc_number, 111 as cc_cvv, 111 as cc_month, (YEAR(CURDATE())+1) as cc_year, cdate > NOW()...
# Problem The only way I can dump a view is if I DO NOT pass in an `include-tables` setting. This dumps all tables and all views. But if I...
I've recently developed a small library that depends on this one. I had to use Reflection to get some stuff done that could be easily prevented if some methods and...
When i try to dump a sqlite db, i get ``` In Mysqldump.php line 251: Missing host from DSN string ``` although the host is not needed for sqlite.
It's a niche option that not many people use so I understand why it's not currently implemented but the --replace option that writes "REPLACE INTO...." instead of "INSERT INTO..." would...