日期:2014-05-17 浏览次数:20713 次
string connstring=" ";
string 卡号 = textBox1.Text;
string sql = "update jieyueguanli set 是否归还=‘已归还’where 借读卡号='"+卡号+"'";
SqlConnection conn = new SqlConnection(connstring);//connstring链接数据库语句
conn.Open();
SqlCommand comd = new SqlCommand(sql,conn);
int count = comd.ExecuteNonQuery();
conn.Close();
if(count>0)
{
MessageBox.Show("修改成功");
}
else
{
MessageBox.Show("修改失败");
}