程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> C#備份還原MySQL數據庫的應用

C#備份還原MySQL數據庫的應用

編輯:MySQL綜合教程

以下的文章主要介紹的是C#備份還原MySQL數據庫的實際應用,如果你對C#備份還原MySQL數據庫的實際應用很感興趣的話,你就可以點擊以下的文章了,望你會對其相關的內容有跟你更深入的了解。

通過調用MySQL的工具MySQLdump來實現。

類Cmd來實現調用cmd命令,

要啟動的進程所在的目錄是說MySQL自動的備份還原MySQL數據庫工具MySQLdump和MySQL所在目錄,當然,這個方法可以執行別的命令行工具。

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Text;  
  4. using System.Diagnostics;  
  5. public class Cmd  
  6. {  
  7. / <summary> 
  8.  

/ 執行Cmd命令

/ </summary>

/ <param name="workingDirectory">要啟動的進程的目錄</param>

/ <param name="command">要執行的命令</param>

  1. public static void StartCmd(String workingDirectory, String command)  
  2. {  
  3. Process p = new Process();  
  4. p.StartInfo.FileName = "cmd.exe";  
  5. p.StartInfo.WorkingDirectory = workingDirectory;  
  6. p.StartInfo.UseShellExecute = false;  
  7. p.StartInfo.RedirectStandardInput = true;  
  8. p.StartInfo.RedirectStandardOutput = true;  
  9. p.StartInfo.RedirectStandardError = true;  
  10. p.StartInfo.CreateNoWindow = true;  
  11. p.Start();  
  12. p.StandardInput.WriteLine(command);  
  13. p.StandardInput.WriteLine("exit");  
  14. }  

備份方法:

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Text;  
  7. using System.Windows.Forms;  
  8. using System.IO;  
  9. using System.Diagnostics;  
  10. using System.Configuration;  
  11. using MDRClient.DataAccess;  
  12. namespace MDRClient  
  13. {  
  14. public partial class DataBackup : Form  
  15. {  
  16. public DataBackup()  
  17. {  
  18. InitializeComponent();  
  19. }  
  20. private void btnBackup_Click(object sender, EventArgs e)  
  21. {  
  22. try  
  23. {  

String command = "MySQLdump --quick --host=localhost --default- character-set=gb2312 --lock-tables --verbose --force --port=端口號 --user= 用戶名 --password=密碼 MySQL數據庫名 -r 備份到的地址";

構建執行的命令
 

  1. StringBuilder sbcommand = new StringBuilder();  
  2. StringBuilder sbfileName = new StringBuilder();  
  3. sbfileName.AppendFormat("{0}", DateTime.Now.ToString()).Replace("-", "").Replace(":", "").Replace(" ", "");  
  4. String fileName = sbfileName.ToString();  
  5. SaveFileDialog saveFileDialog = new SaveFileDialog();  
  6. saveFileDialog.AddExtension = false;  
  7. saveFileDialog.CheckFileExists = false;  
  8. saveFileDialog.CheckPathExists = false;  
  9. saveFileDialog.FileName = fileName;  
  10. if (saveFileDialog.ShowDialog() == DialogResult.OK)  
  11. {  
  12. String directory = saveFileDialog.FileName;  
  13. sbcommand.AppendFormat("MySQLdump --quick --host=localhost --default- character-set=gbk 
    --lock-tables --verbose --force --port=端口號 --user=用戶 名 --password=密碼 數據庫名 -r \"{0}\"", directory);  
  14. String command = sbcommand.ToString();   

獲取MySQLdump.exe所在路徑  

  1. String appDirecroty = System.Windows.Forms.Application.StartupPath + "\\";  
  2. Cmd.StartCmd(appDirecroty, command); 

MessageBox.Show(@"MySQL數據庫已成功備份到 " + directory + " 文件中", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);

  1. }  
  2. }  
  3. catch (Exception ex)  
  4. {  
  5. MessageBox.Show("數據庫備份失敗!");  
  6. }  
  7. }  
  8. }  
  9. }  

還原方法,調用的是MySQL自帶工具MySQL,還原時要注意的是選擇的文件所在路徑時,文件名要是有空格的話會出異常,所以在文件路徑名加上雙引號""

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.ComponentModel;  
  4. using System.Data;  
  5. using System.Drawing;  
  6. using System.Text;  
  7. using System.Windows.Forms;  
  8. using System.IO;  
  9. using System.Diagnostics;  
  10. using System.Configuration;  
  11. using MDRClient.DataAccess;  
  12. namespace MDRClient  
  13. {  
  14. public partial class DataRestore : Form  
  15. {  
  16. public DataRestore()  
  17. {  
  18. InitializeComponent();  
  19. }  
  20. private void btnRestore_Click(object sender, EventArgs e)  
  21. {  

string s = "MySQL --port=端口號 --user=用戶 名 --password=密碼 數據庫名<還原文件所在路徑";

  1. try  
  2. {  
  3. StringBuilder sbcommand = new StringBuilder();  
  4. OpenFileDialog openFileDialog = new OpenFileDialog();  
  5. if (openFileDialog.ShowDialog() == DialogResult.OK)  
  6. {  
  7. String directory = openFileDialog.FileName;  

在文件路徑後面加上""避免空格出現異常

sbcommand.AppendFormat("MySQL --host=localhost --default-character-set=gbk --port=端口 號 --user=用戶名 --password=密碼 MySQL數據庫<\"{0}\"", directory);

  1. String command = sbcommand.ToString(); 

獲取MySQL.exe所在路徑

  1. String appDirecroty = System.Windows.Forms.Application.StartupPath + "\\"; 

DialogResult result = MessageBox.Show("您是否真的想覆蓋以前的數據庫嗎?那麼以前的數據庫數據將丟失!!!", "警告", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);

  1. if (result == DialogResult.Yes)  
  2. {  
  3. Cmd.StartCmd(appDirecroty, command);  
  4. MessageBox.Show("數據庫還原成功!");  
  5. }  
  6. }  
  7.  
  8. }  
  9. catch (Exception ex)  
  10. {  
  11. MessageBox.Show("數據庫還原失敗!");  
  12. }  
  13. }  
  14. }  
  15. }  

以上的相關內容就是對MySQL數據庫的介紹,望你能有所收獲。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved