次のコードで何が間違っているか誰にもわかりますか?
command.Connection = ConnectionManager.GetConnection();
command.CommandText = "Update Table1 SET Replaceme = ? WHERE Searchme = ?";
command.CommandType = CommandType.Text;
command.Parameters.AddWithValue("Replaceme", "Goodman");
command.Parameters.AddWithValue("Searchme", "Anand");
command.Connection.Open();
int recordsaffected = command.ExecuteNonQuery();
MessageBox.Show("Records affected : " + recordsaffected);
MessageBox
0 レコードを表示し、実際には利用可能なレコードを更新していません。
テーブル名(Table1)
と列名の(Replaceme and Searchme)
スペルが正しい。