一般不是系统坏了,是你的sql操作出问题了。你这样自己抓抓错误,看看具体错误的详细内容。try
{//your code here
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
//close something
}