0
美好的一天,我的下面的代碼無法正常工作。當按鈕被點擊時,它應該做的是將所有記錄更新爲scee='WP'
到'RTP'
。我真的很陌生。對不起。更新在按鈕上無法正常工作
using (MySqlConnection resetcon1 = new MySqlConnection(connString))
{
resetcon1.Open();
string scee = "WP";
MySqlCommand resetcom1 =
new MySqlCommand("UPDATE t_table SET [email protected] WHERE scee ='RTP' ", resetcon1);
resetcom1.Parameters.AddWithValue("scee", scee);
resetcom1.ExecuteNonQuery();
resetcon1.Close();
}
非常感謝。
無需添加參數。如果我正確理解你的話,你的sql命令應該看起來更像這樣:UPDATE t_table SET scee ='RTP'WHERE scee ='WP' – kristech
我會試試看!先生!〜 – 19GreenBlankets