最近涉及到通过c# 对mysq数据库的备份和附件功能
因为mysql 有类似的备份和附加的cmd命令,但是一直没用过,今天实践了下,感觉效率挺快,比自己写的效率高。下面我列出c#调用mysql的备份和附加功能函数。
1.备份mysql数据库
定义string strAddress = string.Format("mysqldump --host={0} --default-character-set=utf8 --lock-tables --routines --force --port=3306 --user={1} --password={2} --quick ", 连接的server名称, 用户名, 密码);
string strDB=你需要备份的数据库名称;
this.mysqlPath = "C:\\Program Files\\MySQL\\MySQL Server 5.5\\bin";
if (!string.IsNullOrEmpty(strDB))
{
sfd.Filter = "数据库文件|*.sql";
sfd.FilterIndex = 0;
sfd.RestoreDirectory = true;
sfd.FileName = "BackUp-" + strDB + DateTime.Now.ToString("yyyyMMDDHHmmss") + ".sql";
if (sfd.ShowDialog() == DialogResult.OK)
{
string filePath = sfd.FileName;
string cmd = this.strAddress + strDB + " >" + filePath;
string result = RunCmd(m_mysqlPath, cmd);
if (result.Trim() == "")
{
Show("数据库备份成功!", "提示", );
}
else
{
Show(result, "提示");
}
}
}
主要运行函数
private string RunCmd(string strPath, string strcmd)
{
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.WorkingDirectory = strPath;
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine(strcmd);
p.StandardInput.WriteLine("exit");
return p.StandardError.ReadToEnd();
}
执行即可对选中数据库进行备份。