adriancs
adriancs
Hi @mubaid , I have decided to run a benchmark test, here is the test result that I have produced: https://github.com/MySqlBackupNET/MySqlBackup.Net/wiki/Performance-Benchmark-(MySqlDump-vs-MySqlBackup) About the environment that you're working on... are both...
You may add an additional connection string option: convertzerodatetime=false; Example: ``` server=127.0.0.1;user=root;pwd=abcd;database=test1;convertzerodatetime=false; ```
Currently, there's no plan to support XML
This should be one of the nice add-on feature. This feature will be added. I will update here once it is done.
As an alternative to backup all database in single file, you can backup all of them to separate files within a single click button. This concept is demonstrated in the...
You can have a look at the article: https://github.com/MySqlBackupNET/MySqlBackup.Net/wiki/Table-or-Column's-name-wrapped-with-double-quotes-in-stead-of-single-quote
I think this should be handled externally. Just add the code for checking the directory before running the backup. ``` string folder = "C:\backup"; if (!Directory.Exists(folder)) { Directory.CreateDirectory(folder); } ```
I think it is ok to add the folder creation code. It will be added in the next release. Cheers.
Hi, @MihailsKuzmins , I have already added this feature at the new release. You may check it out :) Release: https://github.com/MySqlBackupNET/MySqlBackup.Net/releases/tag/fe2ca1f Nuget: https://www.nuget.org/packages/MySqlBackup.NET/
You can try to run another separate process at B to save the data on B, or if you wish to run the process at A, then after completing the...