C# Tip — C#實現MySQL資料庫的備份與還原

來源:互聯網
上載者:User
這篇放到單獨講解資料庫的分類比較好,不過作為技巧性的東西,不強求怎麼分類,且聽我徐徐道來.  備份方法: 先通過註冊表得到MySQL程式的安裝路徑,如果是5.0版本,就是:  

var registerLocation = @"Software\MySQL AB\MySQL Server 5.0"; 
var key = Registry.LocalMachine.OpenSubKey(registerLocation);
if (key != null)
{
var location = key.GetValue("Location").ToString();
}
 得到路徑之後,建立一個Process,準備開始備份,具體細節一邊代碼一邊注釋講解.  

var proc = new Process(); 
//通過命令列的方式進行備份,因此需要運行cmd.exe
proc.StartInfo.FileName = "cmd.exe";
//禁用系統Shell啟動
proc.StartInfo.UseShellExecute = false;
//設定工作目錄到location + @"bin"
//因為我們要使用mysqldump做備份,而mysqldump程式在目錄 location+@"bin"下
proc.StartInfo.WorkingDirectory = location + @"bin";
//mysqldump的參數可參考mysql官網的註解,這裡通過format的方式
//得到的命令參數,每個代表什麼意思,從字面上已經很好理解,不解釋,^_^
proc.StartInfo.Arguments = string.Format("mysqldump.exe --default-character-set=utf8 -h {0} -u {1} -p{2} {3} > {4}",server,user,pwd,database,backupFile);
//不建立視窗,相當於隱藏介面
proc.StartInfo.CreateNoWindow = true;
//以下兩句主要是為了調試目的,加不加都無所謂
proc.StartInfo.RedirectStandardInput = true;
proc.StartInfo.RedirectStandardOutput = true;
//開始執行備份
proc.Start();
//等待備份完成
proc.WaitForExit();
//關閉進程
proc.Close();
 這樣簡單幾步就備份完成了. 還原方法: 跟備份的方法類似,只是備份調用的是mysql.exe 只需改一句,具體參數—force表示強制還原,其他很明了,不多解釋.  

proc.StartInfo.Arguments = string.Format("mysql.exe --force -h {0} -u {1} -p{2} {3} < {4}",
server,user,pwd,database,restoreFile);
多餘的代碼就不寫了,O(∩_∩)O哈哈~ 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.