在ASP.NET中备份和还原数据库

时间:2022-02-26 15:26:04
    昨天看了《C#项目实录》中的进销存管理系统,和其他书里讲的案例一样,无非也就是数据库增删查改,但是这个进销存系统中有一个备份和还原数据库的功能,蛮有兴趣的,看了一下代码,原来如此,也就是通过SQL语句来进行备份和还原数据库,SQL语句如下:
  1. -- 备份数据库
  2. backup database db_CSManage to disk='c:\backup.bak'
  3. -- 还原数据库,必须先备份该数据库的日志文件到原先的备份文件中
  4. backup log db_CSManage to disk='c:\backup.bak'
  5. restore database db_CSManage from disk='c:\backup.bak'

其中db_CSManage是数据库名称,disk后的路径即是备份文件存储的路径。 
知道了SQL语句,那么在.NET代码中就容易多了,备份的.NET代码如下:

  1. try
  2. {
  3. if (txtPath.Text != "" && txtName122.Text != "")
  4. {
  5. getSqlConnection geCon = new getSqlConnection();
  6. SqlConnection con = geCon.GetCon();
  7. string strBacl = "backup database db_CSManage to disk='" + txtPath.Text.Trim() + "\\" + txtName.Text.Trim() + ".bak'";
  8. SqlCommand Cmd = new SqlCommand(strBacl, con);
  9. if (Cmd.ExecuteNonQuery() != 0)
  10. {
  11. MessageBox.Show("数据备份成功!", "提示框", MessageBoxButtons.OK, MessageBoxIcon.Information);
  12. this.Close();
  13. }
  14. else
  15. {
  16. MessageBox.Show("数据备份失败!", "提示框", MessageBoxButtons.OK, MessageBoxIcon.Information);
  17. }
  18. }
  19. else
  20. {
  21. MessageBox.Show("请填写备份的正确位置及文件名!", "提示框", MessageBoxButtons.OK, MessageBoxIcon.Information);
  22. }// end
  23. }
  24. catch (Exception ee)
  25. {
  26. MessageBox.Show(ee.Message.ToString());
  27. }

以下是还原数据库的代码,在示例中发现开头得先删除与该数据库相关的进程,然后在还原之前得先把数据库日志备份到开始的备份文件中,然后才还原备份文件,要不然会出错的,代码如下:

  1. if (textPaht.Text != "")
  2. {
  3. getSqlConnection geCon = new getSqlConnection();
  4. SqlConnection con = geCon.GetCon();
  5. if (con.State == ConnectionState.Open)
  6. {
  7. con.Close();
  8. }
  9. string DateStr = "Data Source=niunan\\sqlexpress;Database=master;User id=sa;PWD=123456";
  10. SqlConnection conn = new SqlConnection(DateStr);
  11. conn.Open();
  12. //-------------------杀掉所有连接 db_CSManage 数据库的进程--------------
  13. string strSQL = "select spid from master..sysprocesses where dbid=db_id( 'db_CSManage') ";
  14. SqlDataAdapter Da = new SqlDataAdapter(strSQL, conn);
  15. DataTable spidTable = new DataTable();
  16. Da.Fill(spidTable);
  17. SqlCommand Cmd = new SqlCommand();
  18. Cmd.CommandType = CommandType.Text;
  19. Cmd.Connection = conn;
  20. for (int iRow = 0; iRow <= spidTable.Rows.Count - 1; iRow++)
  21. {
  22. Cmd.CommandText = "kill " + spidTable.Rows[iRow][0].ToString();   //强行关闭用户进程
  23. Cmd.ExecuteNonQuery();
  24. }
  25. conn.Close();
  26. conn.Dispose();
  27. //--------------------------------------------------------------------
  28. SqlConnection sqlcon = new SqlConnection(DateStr);
  29. sqlcon.Open();
  30. string sql = "backup log db_CSManage to disk='" + textPaht.Text.Trim() + "' restore database db_CSManage from disk='" + textPaht.Text.Trim() + "'";
  31. SqlCommand sqlCmd = new SqlCommand(sql, sqlcon);
  32. sqlCmd.ExecuteNonQuery();
  33. sqlCmd.Dispose();
  34. sqlcon.Close();
  35. sqlcon.Dispose();
  36. MessageBox.Show("数据还原成功!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
  37. MessageBox.Show("为了必免数据丢失,在数据库还原后将关闭整个系统。");
  38. Application.Exit();
  39. }
  40. else
  41. {
  42. MessageBox.Show("请选择备份文件!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  43. }

附上整个进销存系统的源码