我正在开发一个 web 服务,在该服务中,我根据状态使用 select 语句获取一些记录,然后我需要更改状态。
就像是:
select * from tblx where status='x'
进而
update tblx set status='y' where status='x'
对于获取的记录。
示例代码:
string getpaid = "select top2 * from tblfameface where img_f_p='paid'";
con1 = new SqlConnection(conString1);
con1.Open();
SqlCommand cmd = new SqlCommand(getpaid, con1);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable dt1 = new DataTable();
da.Fill(dt1);
foreach (DataRow row in dt1.Rows)
{
string updatepaid = "update tblfameface set img_f_p='free' where img_f_p='paid' ";
con1 = new SqlConnection(conString1);
con1.Open();
SqlCommand cmd1 = new SqlCommand(updatepaid, con1);
int temp = cmd1.ExecuteNonQuery();
con1.Close();
}
}
我不知道如何解决它。
我能得到任何帮助吗??