首页上一页 1 下一页尾页 3 条记录 1/1页
c#开发经验技巧宝典遇到的一个问题!
发表在C#图书答疑
2008-11-24
是否精华
是
否
版块置顶:
是
否
我的目的是对数据库进行还原,我参考了C#开发经验技巧宝典中第560页上的0958例子,运行时出来的
提示是数据库正在被运行的提示!请问是什么原因呢?我应该怎么做呢!
*********************************************************************************
SqlConnection con = new SqlConnection("server=.;uid=sa;pwd=;");
string sql = "use master restore database SetBooks from disk='" + txtpath.Text +"'";
SqlCommand com = new SqlCommand(sql, con);
con.Open();
com.ExecuteNonQuery();
con.Close();
MessageBox.Show("数据恢复完毕!");
**********************************************************************************