You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,28 +73,28 @@ using (MySqlConnection conn = new MySqlConnection(constring))
73
73
74
74
## Introduction
75
75
76
-
MySqlBackup.NET is a tool (DLL) that can backup/restore MySQL database in .NET Programming Language. It is an alternative to MySqlDump.
76
+
MySqlBackup.NET is a tool (DLL) that can backup/restore MySQL database in .NET Programming Language. It is an alternative to MySqlDump.
77
77
78
-
This tool is develop in C# but able to be used in any .NET Language (i.e. VB.NET, F#, etc).
78
+
This tool is developed in C# but able to be used in any .NET Language (i.e. VB.NET, F#, etc.).
79
79
80
-
Another benefits 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.
80
+
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.
81
81
82
82
The most common way to backup a MySQL Database is by using MySqlDump and MySQL Workbench.
83
83
84
-
MySQL Workbench is good for developers, but, when comes to 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 client or end-user.
84
+
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.
85
85
86
-
On the other hand, MySqlDump.exe cannot be executed directly from the Web Server. As most providers forbid that, MySqlBackup will be helpful in building a web-based (ASP.NET) backup tool.
86
+
On the other hand, MySqlDump.exe cannot be executed directly from the Web Server. As most providers forbid that, MySqlBackup will be helpful in building a web-based (ASP.NET) backup tool.
87
87
88
88
## Features
89
89
90
90
* Backup and Restore of MySQL Database
91
91
* Can be used in any .NET Languages.
92
92
* Export/Import to/from MemoryStream
93
93
* Conditional Rows Export (Filter Tables or Rows)
94
-
*Build-In Internal Encryption Function
94
+
*Built-in Internal Encryption Function
95
95
* Able Restore to New Non-Existed Database
96
96
* Progress Report is Available for Both Export and Import Task.
97
-
* Able to export rows into different mode. (Insert, Insert Ignore, Replace, On Duplicate Key Update, Update)
97
+
* Able to export rows into different modes. (Insert, Insert Ignore, Replace, On Duplicate Key Update, Update)
98
98
* Can be used directly in ASP.NET or web services.
99
99
100
100
## Prerequisite and Dependencies for Development, Compile and Production Usage
0 commit comments