110,983
社区成员
发帖
与我相关
我的任务
分享
public int update(string sql)
{
conn.Open();
int i;
try
{
SqlCommand scd = new SqlCommand(sql, conn);
i = scd.ExecuteNonQuery();
}
catch
{
i =0;
}
conn.Close();
return i;
} //构造提交sql语句并查询更改情况的函数