登录
首页 >  数据库 >  MySQL

c#mysql数据库备份还原

来源:SegmentFault

时间:2023-02-23 10:16:14 221浏览 收藏

你在学习数据库相关的知识吗?本文《c#mysql数据库备份还原》,主要介绍的内容就涉及到MySQL、c#、winform,如果你想提升自己的开发能力,就不要错过这篇文章,大家要知道编程理论基础和实战操作都是不可或缺的哦!

mysql数据库备份还原

数据备份是数据安全的最后一道防线,对于任何数据丢失的场景,备份虽然不一定能恢复百分之百的数据(取决于备份周期),但至少能将损失降到最低。

VS引用dll

需要用到dll程序包

public static class mysql
{
public static string constr = "database=test;Password=密码;user ID=root;server=ip地址";
public static MySqlConnection conn = new MySqlConnection(constr);
}

数据备份

DialogResult result = MessageBox.Show("备份路径默认在当前程序下", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if(result == DialogResult.Yes)
{
    string time1 = System.DateTime.Now.ToString("d").Replace("/", "-");
    string file = ".//mysql/" + time1 + "_test.sql";
    using(MySqlCommand cmd = new MySqlCommand())
    {
        using(MySqlBackup mb = new MySqlBackup(cmd))
        {
            cmd.Connection = mysql.conn;
            mysql.conn.Open();
            mb.ExportToFile(file);
            mysql.conn.Close();
            MessageBox.Show("已备份");
        }
    }
}

备份还原

string file = textBox1.Text;
if(file == "")
{
    MessageBox.Show("不能为空");
    return;
}
DialogResult result = MessageBox.Show("确定还原吗?", "还原", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if(result == DialogResult.Yes)
{
    try
    {
        using(MySqlCommand cmd = new MySqlCommand())
        {
            using(MySqlBackup mb = new MySqlBackup(cmd))
            {
                cmd.Connection = mysql.conn;
                mysql.conn.Open();
                mb.ImportFromFile(file);
                mysql.conn.Close();
                MessageBox.Show("已还原");
            }
        }
    }
    catch(Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

定时备份

//winform
timer1.Interval = 1000; //代表一秒运行一次
timer1.Enabled = true; //启动

利用winform窗体 timer定时器控件

private void timer1_Tick(object sender, EventArgs e)
{
    if(booql)
    {
        booql = false;
        if(DateTime.Now.Hour == 10 && DateTime.Now.Minute == 00) //时间10点 
        {
            string time1 = System.DateTime.Now.ToString("d").Replace("/", "-");
            string file = ".//mysql/" + time1 + "_test.sql";
            using(MySqlCommand cmd = new MySqlCommand())
            {
                using(MySqlBackup mb = new MySqlBackup(cmd))
                {
                    cmd.Connection = mysql.conn;
                    mysql.conn.Open();
                    mb.ExportToFile(file);
                    mysql.conn.Close();
                    MessageBox.Show("数据库已自动备份本地");
                }
            }
        }
    }
}

理论要掌握,实操不能落!以上关于《c#mysql数据库备份还原》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表