数据库连接问题
在数据库操作中 操作成功和操作不成功是怎么提示或者说对数据库进行数据插入时用messagebox,.show提示一下是插入成功或插入不成功
try
{
…………
MessageBox.Show(……);
}
catch
{
…………
MessageBox.Show(……);
}
[CODE]SqlConnection myconn = new SqlConnection(".....")
try
{
myconn.Open();
string InsertSql ="insert table(id,name,age) values(001,'wang',21)";
SqlCommand cmd= new SqlCommand(InsertSql,myconn);
cmdExecuteNonQuery();
MessageBox.show("恭喜,添加数据成功!","提示");
}
catch
{
MessageBox.show("错误,请稍后再试!","提示");
}
finally
{
myconn.Close();
}[/CODE]