C# の Windows フォーム ボタンを使用してデータベースを更新しようとしています。これから表示するコードを実行してもエラーは表示されませんが、データベースまたはデータ グリッドのデータは変更されません。
private void update_Click(object sender, EventArgs e)
{
SqlConnection NewCon = new SqlConnection(@"Data Source=.\SQLEXPRESS;AttachDbFilename=E:\ASPNET\cd\cdcwk2\cddatabase.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True");
SqlCommand cmd = new SqlCommand("UPDATE cdstock set cd_title='" + cdtext.Text + "', artist='" + artisttext.Text + "',genre='" + genretext.Text + "', rating=" + ratingtext.Text + ", cd_discription='" + distext.Text + "' where cd_id =" + idtext.Text + ";", NewCon);
MessageBox.Show("UPDATE cdstock set cd_title='" + cdtext.Text + "', artist='" + artisttext.Text + "',genre='" + genretext.Text + "', rating='" + ratingtext.Text + "', cd_discription='" + distext.Text + "' where cd_id ='" + idtext.Text + "'");
NewCon.Open();
cmd.ExecuteNonQuery();
NewCon.Close();
MessageBox.Show("Record Has Now Been UPDATED!!");
}