MySqlBackup.NET
2.3.8
dotnet add package MySqlBackup.NET --version 2.3.8
NuGet\Install-Package MySqlBackup.NET -Version 2.3.8
<PackageReference Include="MySqlBackup.NET" Version="2.3.8" />
paket add MySqlBackup.NET --version 2.3.8
#r "nuget: MySqlBackup.NET, 2.3.8"
// Install MySqlBackup.NET as a Cake Addin #addin nuget:?package=MySqlBackup.NET&version=2.3.8 // Install MySqlBackup.NET as a Cake Tool #tool nuget:?package=MySqlBackup.NET&version=2.3.8
MySqlBackup.Net
A tool to backup and restore MySQL database in C#/VB.NET/ASP.NET.
Runs on MySql.Data.DLL, MySqlConnector.DLL and Devart.Express.MySql.DLL
How to Add This Library into Your Project
Read this wiki: How to Add This Library into Your Project
Backup ALL Databases in 1 Click
Export all the databases one by one to separate SQL dump files. This a sub-project expansion using MySqlBackup.NET. Read more: MySqlBackup_All_DB
Download
https://github.com/MySqlBackupNET/MySqlBackup.Net/releases
Install via NuGet:
PM> Install-Package MySqlBackup.NET
https://www.nuget.org/packages/MySqlBackup.NET/
PM> Install-Package MySqlBackup.Net.DevartExpress<br /> https://www.nuget.org/packages/MySqlBackup.Net.DevartExpress/
PM> Install-Package MySqlBackup.NET.MySqlConnector<br /> https://www.nuget.org/packages/MySqlBackup.NET.MysqlConnector/
Backup/Export a MySQL Database
string constring = "server=localhost;user=root;pwd=qwerty;database=test;";
string file = "C:\\backup.sql";
using (MySqlConnection conn = new MySqlConnection(constring))
{
using (MySqlCommand cmd = new MySqlCommand())
{
using (MySqlBackup mb = new MySqlBackup(cmd))
{
cmd.Connection = conn;
conn.Open();
mb.ExportToFile(file);
conn.Close();
}
}
}
Import/Restore a MySQL Database
string constring = "server=localhost;user=root;pwd=qwerty;database=test;";
string file = "C:\\backup.sql";
using (MySqlConnection conn = new MySqlConnection(constring))
{
using (MySqlCommand cmd = new MySqlCommand())
{
using (MySqlBackup mb = new MySqlBackup(cmd))
{
cmd.Connection = conn;
conn.Open();
mb.ImportFromFile(file);
conn.Close();
}
}
}
Introduction
MySqlBackup.NET is a tool (DLL) that can backup/restore MySQL database in .NET Programming Language. It is an alternative to MySqlDump.
This tool is developed in C# but able to be used in any .NET Language (i.e. VB.NET, F#, etc.).
Another benefit of making this tool is, we don't have to rely on two small programs - MySqlDump.exe and MySql.exe to perform the backup and restore task. We will have better control on the output result in .NET way.
The most common way to backup a MySQL Database is by using MySqlDump and MySQL Workbench.
MySQL Workbench is good for developers, but when comes to the client or end-user, the recommended way is to get every parameter preset and all they need to know is press the big button "Backup" and everything is done. Using MySQL Workbench as a backup tool is not a suitable solution for the client or end-user.
On the other hand, MySqlDump.exe cannot be executed directly from the Web Server. As some providers forbid that, MySqlBackup will be helpful in building a web-based (ASP.NET) backup tool.
Features
- Backup and Restore of MySQL Database
- Can be used in any .NET Languages.
- Export/Import to/from MemoryStream
- Conditional Rows Export (Filter Tables or Rows)
- Progress Report is Available for Both Export and Import Task.
- Able to export rows into different modes. (Insert, Insert Ignore, Replace, On Duplicate Key Update, Update)
- Can be used directly in ASP.NET or web services.
Prerequisite and Dependencies for Development, Compile and Production Usage
MySqlBackup.NET relies on the following component to work.
<b>Option 1: MySql.Data (Connector/NET)</b>
- MySQL dot net Connector/Net (MySql.Data.DLL)
- MySql.Data.DLL is developed by Oracle Corporation, licensed under GPL License (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html).
<b>Option 2: Devart Express (dotConnect)</b>
- Devart dotConnect for MySQL Express
- For license agreement, please read: https://www.devart.com/dotconnect/mysql/licensing-faq.html
- Devart.Data.DLL
- Devart.Data.MySql.DLL
<b>Option 3: MySqlConnector (MIT)</b>
- MySqlConnector: High Performance MySQL Library for .NET
- Project URL: https://github.com/mysql-net/MySqlConnector
- Licensed under MIT
- MySqlConnector.DLL
Reminder
Reminder 1
MySqlBackup.NET (or MySqlBackup.DLL) stands on top of MySql.Data.DLL which also stands on top of .NET Framework, which uses UTF8 encoding by default. If your database involves any UTF8 or Unicode Characters. You must use a MySQL database with default character of UTF8 while handling Unicode Characters, such as
- Western European specific languages, the character of 'À', 'ë', 'õ', 'Ñ'.
- Russian, Hebrew, India, Arabic, Chinese, Korean, Japanese characters, etc.
You are recommended to apply the connection string option of charset=utf8. Example:
server=localhost;user=root;pwd=mypwd;charset=utf8;
or
server=localhost;user=root;pwd=mypwd;charset=utf8mb4;
Reminder 2
(For MySql.Data connector only) DateTime conversion between MySQL and .NET Framework. In MySQL, there are various of DateTime format, such as null value or Date only data. But, in .NET Framework, there is no null value (or Date only) for DateTime. This error is not caused by MySqlBackup.DLL. MySql.Data.DLL (developed by Oracle) has decided to throw an exception of Data Conversion Error. Therefore, you are strongly recommended to apply the connection string option of convertzerodatetime=true. Example:
server=localhost;user=root;pwd=mypwd;charset=utf8;convertzerodatetime=true;
Performance Benchmark (MySqlDump vs MySqlBackup.NET)
Full Report - Wiki Page: Performance Benchmark (MySqlDump vs MySqlBackup.NET))
Summary Benchmark Report:
Database Size: 3.5GB (15 million rows)
Process Tools Time
------- --------- ------
Backup 1 MySqlDump 2m 36s
Backup 2 MySqlDump 2m 33s
Backup 3 MySqlDump 2m 35s
File size:
4.66 GB (5,008,487,275 bytes)
Backup 4 MySqlBackup.NET 7m 48s
Backup 5 MySqlBackup.NET 7m 46s
Backup 6 MySqlBackup.NET 7m 50s
File size:
4.59 GB (4,931,743,894 bytes)
Restore 1 MySql.exe 8m 42s
Restore 2 MySql.exe 8m 23s
Restore 3 MySql.exe 8m 57s
Restore 4 MySqlBackup.NET 9m 44s
Restore 5 MySqlBackup.NET 9m 39s
Restore 6 MySqlBackup.NET 9m 39s
License
MySqlBackup.Net is licensed under the The Unlicense.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 is compatible. net481 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.8
- MySql.Data (>= 8.0.32)
-
.NETFramework 4.8.1
- MySql.Data (>= 8.0.32)
-
.NETStandard 2.0
- MySql.Data (>= 8.0.32)
-
.NETStandard 2.1
- MySql.Data (>= 8.0.32)
-
net6.0
- MySql.Data (>= 8.0.32)
NuGet packages (14)
Showing the top 5 NuGet packages that depend on MySqlBackup.NET:
Package | Downloads |
---|---|
Nascorp.Library
Library to methods utilities |
|
ThrowawayDb.MySql
Dead simple integration tests with Sql server throwaway databases. |
|
FrontLookCoreDbBackUpLibrary
This package adds an asp.net core database backup library! Supports MsSql And MySql. |
|
MyDapper
Dapper的操作帮助类 |
|
Panda.Tools
Package Description |
GitHub repositories (5)
Showing the top 5 popular GitHub repositories that depend on MySqlBackup.NET:
Repository | Stars |
---|---|
revenz/FileFlows
FileFlows is a file processing application that can execute actions against a file in a tree flow structure.
|
|
feiyit/FytSoaCms
NetCore2.2开发, Vs2017 数据Mysql
|
|
jaskie/PlayoutAutomation
Television broadcast automation system
|
|
Zaid-Ajaj/ThrowawayDb
Dead simple integration tests with SQL Server or Postgres throwaway databases that are created on the fly, used briefly then disposed of automagically.
|
|
logicpulse/logicPOS
Logicpulse's Open Source POS System
|
Version | Downloads | Last updated |
---|---|---|
2.3.8 | 75,542 | 3/7/2023 |
2.3.7 | 94,583 | 10/18/2022 |
2.3.6.1 | 136,981 | 10/20/2021 |
2.3.6 | 4,295 | 10/17/2021 |
2.3.5.3 | 4,145 | 9/24/2021 |
2.3.5.2 | 1,432 | 9/23/2021 |
2.3.5.1 | 1,499 | 9/22/2021 |
2.3.4.2 | 7,542 | 7/30/2021 |
2.3.4.1 | 6,209 | 7/12/2021 |
2.3.4 | 77,430 | 3/10/2021 |
2.3.3.1 | 41,850 | 7/16/2020 |
2.3.1 | 322,704 | 8/23/2019 |
2.3.0.1 | 9,549 | 7/26/2019 |
2.3.0 | 5,115 | 6/24/2019 |
2.2.1 | 15,410 | 4/7/2019 |
2.2.0 | 1,888 | 4/7/2019 |
2.1.0 | 14,925 | 12/1/2018 |
2.0.12.1 | 10,018 | 8/28/2018 |
2.0.12 | 25,100 | 3/26/2018 |
2.0.11.1 | 5,730 | 2/7/2018 |
2.0.11 | 2,385 | 2/7/2018 |
2.0.10.1 | 5,157 | 12/2/2017 |
2.0.10 | 4,123 | 12/1/2017 |
2.0.9.5 | 43,814 | 11/19/2016 |
2.0.9.4 | 8,386 | 3/20/2016 |
2.0.9.3 | 9,415 | 1/9/2016 |
2.0.9.2 | 6,505 | 8/8/2015 |
2.0.9.1 | 2,693 | 7/24/2015 |
2.0.9 | 2,595 | 7/19/2015 |
2.0.8 | 30,219 | 2/24/2015 |
2.0.7.1 | 17,316 | 1/26/2015 |
2.0.6 | 2,964 | 11/21/2014 |
2.0.5.1 | 2,604 | 10/20/2014 |
2.0.5 | 2,299 | 10/20/2014 |
2.0.4 | 3,924 | 5/12/2014 |
2.0.3 | 2,409 | 5/11/2014 |
2.0.2.1 | 3,153 | 4/10/2014 |
update dependencies