私はこの質問が以前に尋ねられたことは知っていますが、なぜ私のコードがデータベースに更新されないのかについての答えをまだ得られません。このコードにはエラーはありませんが、データをデータベースに更新しません。誰でも私を助けてください。ここに私のコードは次のとおりです。データベースに更新する方法
private void button1_Click_1(object sender, EventArgs e)
{
con.Open();
bool exists2;
using (SqlCommand cmd2 = new SqlCommand("select count(*) from [m_emp_photo] where [email protected]", con))
{
cmd2.Parameters.AddWithValue("@empno", textBoxEmpNo.Text);
cmd2.Parameters.AddWithValue("@path", textBoxImgPath.Text);
exists2 = (int)cmd2.ExecuteScalar() > 0;
}
if (exists2)
{
string query2 = "";
//query2 = "update m_emp_photo set [email protected] where [email protected]";
query2 = "UPDATE m_emp_photo set [email protected] where [email protected]";
SqlCommand cmd2;
cmd2 = new SqlCommand(query2, con);
cmd2.Parameters.AddWithValue("@path", textBoxImgPath.Text);
MessageBox.Show("Changes has been saved!");
}
else
{
MessageBox.Show("No record found");
}
con.Close();
}
ありがとうございました!それは:) – Miza