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 14 mysql-backup4j issues
Sort by recently updated
recently updated
newest added

Bumps [zt-zip](https://github.com/zeroturnaround/zt-zip) from 1.12 to 1.13. Changelog Sourced from zt-zip's changelog. 1.13 (2nd May 2018) Fixed a possible security vulnerability reported by Snyk Security Research Team Fixed same-zip bug for...

dependencies

Bumps [mysql-connector-java](https://github.com/mysql/mysql-connector-j) from 8.0.21 to 8.0.28. Changelog Sourced from mysql-connector-java's changelog. Changelog https://dev.mysql.com/doc/relnotes/connector-j/8.0/en/ Version 8.0.29 Fix for Bug#21978230, COMMENT PARSING NOT PROPER IN PREPSTMT.EXECUTEBATCH(). Fix for Bug#81468 (23312764), MySQL server...

dependencies

I found out the package wasn't able to backup large tables, I made some changes and know package could import more than 2GB+ tables. I had a test backup of...

Backslashes in String fields are lost after backup and restore. Original text field content: "data\with\backslash"; mysql-backup4j produces an insert statement like this: `INSERT INTO [...] VALUES ('data\with\backslash')` After restore, the...

EmailService receive some properties like mail.smtp.auth, mail.smtp.starttls.enable, mail.smtp.host, mail.smtp.port, mail.smtp.ssl.trust but is not possible to setup neither mail.smtp.ssl.protocols nor mail.smtp.starttls.required.

Allows specify an specific SSL protocol like = TLSv1.2

When trying to restore a database that has foreign key constraints - with dropExisting enabled - the MysqlImportService returns e.g.: ` Cannot drop table 'address' referenced by a foreign key...

# problem I using Blob/TinyBlob/MediumBlob in MySql8. Sometimes i can export data from database but i cannot import them when read Blod data from file, java.sql will throw exception because...

enhancement