mysql-backup4j icon indicating copy to clipboard operation
mysql-backup4j copied to clipboard

mysql-backup4j is a library for programmatically exporting mysql databases and sending the zipped dump to email, Amazon S3, Google Drive or any other cloud storage of choice

Results 16 mysql-backup4j issues
Sort by recently updated
recently updated
newest added

Can you add opportunity to filter tables in MysqlBaseService?

enhancement

Following up enchancement request #30, I've added a MAX_INSERT_SIZE property, which if set ensures that large insert queries are split into several smaller ones, to avoid exceeding the max_packet_size MySql...

When exporting a large datebase, the generated insert sql statements may exceed the system limits. Trying to execute the query on MariaDB triggers the following error : SQL Error (1153):...

I created a MySQL database containing a single table with a primary key column, some describing meta data columns and a longblob column. Then I added 3 records containing the...

### Overview This pull request introduces a new feature that allows users to export specific tables from the database by specifying their names as a comma-separated list. ### Changes Made...