[求助]如何判断是否修改成功
类里的代码:
public DataSet FillDataGrid(string sTmp)
{
try
{
SqlCommand Incmd=new SqlCommand(sTmp,con);
Incmd.ExecuteNonQuery();
DataSet ds=new DataSet();
return ds;
}
catch(SqlException e)
{
e.Message.ToString();
return null;
}
}
前台的:
string upstr="update ItemSort set itemsortname='"+strName+"' where itemsortid='"+strid+"'";
odb.FillDataGrid(upstr);
如果成功就提示修改成功,失败就提示修改失败。