主要功能:
1,資料庫的初始化
2,資料庫的備份|還原
代碼如下:
// 執行建立資料庫操作this.GetExecute(G_Con, "create database if not exists NEWDB");this.sqlAddress = " -h " + IP + " -u" + User + " -p" + Password + " NEWDB ";// 資料庫的備份private void btn_Dump_Click(object sender, EventArgs e){ using (SaveFileDialog sfd = new SaveFileDialog()) { sfd.Filter = "資料庫檔案|*.sql"; sfd.FilterIndex = 0; sfd.RestoreDirectory = true; sfd.FileName = "BackUp" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".sql"; if (sfd.ShowDialog() == System.Windows.Forms.DialogResult.OK) { string filePath = sfd.FileName; string cmd = "mysqldump " + sqlAddress + " > \"" + filePath + "\""; string result = RunCmd(cmd); if (result.Trim() == "") { MessageBox.Show("Database Backup成功!", "CMS", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show(result, "CMS", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }}//資料庫的還原// 還原資料庫private void btn_Import_Click(object sender, EventArgs e){ if (this.tb_Path.Text.Trim() == "") { MessageBox.Show("請選擇要恢複的檔案!", "CMS", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } //this.GetExecute(G_Con, "create database if not exists clothes"); string filePath = this.tb_Path.Text.Trim(); string cmd = "mysql " + sqlAddress + " < \"" + filePath + "\""; string result = RunCmd(cmd); if (result.Trim() == "") { MessageBox.Show("資料庫恢複成功!", "CMS", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show(result, "CMS", MessageBoxButtons.OK, MessageBoxIcon.Information); }}// 命令列操作private string RunCmd(string command){ //例Process Process p = new Process(); p.StartInfo.FileName = "cmd.exe"; //確定程式名 p.StartInfo.Arguments = "/c " + command; //確定程式命令列 p.StartInfo.UseShellExecute = false; //Shell的使用 p.StartInfo.RedirectStandardInput = true; //重新導向輸入 p.StartInfo.RedirectStandardOutput = true; //重新導向輸出 p.StartInfo.RedirectStandardError = true; //重新導向輸出錯誤 p.StartInfo.CreateNoWindow = true; //設定置不顯示示視窗 p.Start(); //00 p.StandardInput.WriteLine(command); //也可以用這種方式輸入入要行的命令 p.StandardInput.WriteLine("exit"); //要得加上Exit要不然下一行程式 //p.WaitForExit(); //p.Close(); //return p.StandardOutput.ReadToEnd(); //輸出出流取得命令列結果果 return p.StandardError.ReadToEnd();}
主要原理就是 使用MYSQL的命令 mysqldump 和 mysql 進行匯出 和匯入操作,其中調用了windows的 命令列。
一開始的時候使用了Navicat for MySQL 進行了資料庫的備份,然後還原的時候發現一台機器正常,一台機器出錯,鬱悶,後來發現應該是
這個工具的mysql命令跟安裝mysql命令版本不同的原因,使用這個工具匯出的資料檔案內容格式,跟程式中匯出的資料檔案內容格式不同。
當都採用程式匯出的檔案作為 還原檔案時,2台機器都正常。不過還是推薦下Navicat for MySQL,用著還不錯。多類型資料庫 datastudio 是王道!
注意:如果出現命令不存在錯誤,請在系統內容變數中的 PATH 中 增加 MYSQL 的安裝路徑,如:C:\Program Files\MySQL\MySQL Server 5.5\bin