3

我有一个备份 MySQL 数据库的程序。而且我有不同的 MySQL 服务器。此过程适用于某些 MySQL 服务器。但在某些服务器上它无法正常运行并创建一个大小为 1kb 的备份文件。

代码

public void DatabaseBackup(string ExeLocation, string DBName)
{
    try
    {
        string tmestr = "";
        tmestr = DBName + "-" + DateTime.Now.ToString("hh.mm.ss.ffffff") + ".sql";
        tmestr = tmestr.Replace("/", "-");
        tmestr = "c:/" + tmestr;
        StreamWriter file = new StreamWriter(tmestr);
        ProcessStartInfo proc = new ProcessStartInfo();
        string cmd = string.Format(@"-u{0} -p{1} -h{2} {3}", "uid", "pass", "host", DBName);
        proc.FileName = ExeLocation;
        proc.RedirectStandardInput = false;
        proc.RedirectStandardOutput = true;
        proc.Arguments = cmd;
        proc.UseShellExecute = false;
        proc.CreateNoWindow = true;
        Process p = Process.Start(proc);
        string res;
        res = p.StandardOutput.ReadToEnd();
        file.WriteLine(res);
        p.WaitForExit();
        file.Close();
    }
    catch (IOException ex)
    {

    }
}

谁能告诉我问题是什么以及我该如何解决。

4

2 回答 2

2

最后我得到了答案。我们需要对要备份的 MySQL 用户或数据库具有 SELECT 和 LOCK_TABLE 权限。在数据库上设置这些权限后,我可以对该数据库进行完整备份。

于 2013-05-06T13:34:01.367 回答
0

备份声明在哪里?

这是备份数据库的最佳方法:

private void BackupDatabase()
        {
            string time = DateTime.Now.ToString("dd-MM-yyyy");
            string savePath = AppDomain.CurrentDomain.BaseDirectory + @"Backups\"+time+"_"+saveFileDialogBackUp.FileName;
            if (saveFileDialogBackUp.ShowDialog() == DialogResult.OK)
            {
                try {
                        using (Process mySqlDump = new Process())
                        {
                            mySqlDump.StartInfo.FileName = @"mysqldump.exe";
                            mySqlDump.StartInfo.UseShellExecute = false;
                            mySqlDump.StartInfo.Arguments = @"-u" + user + " -p" + pwd + " -h" + server + " " + database + " -r \"" + savePath + "\"";
                            mySqlDump.StartInfo.RedirectStandardInput = false;
                            mySqlDump.StartInfo.RedirectStandardOutput = false;
                            mySqlDump.StartInfo.CreateNoWindow = true;
                            mySqlDump.Start();
                            mySqlDump.WaitForExit();
                            mySqlDump.Close();
                        }
                    }
                    catch (IOException ex)
                    {
                        MessageBox.Show("Connot backup database! \n\n" + ex);
                    }
                MessageBox.Show("Done! database backuped!", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }

祝你好运!

于 2013-05-04T14:15:32.793 回答