public void saveImage(byte[] image, int patient_id, MySqlConnection con)
{
string sql = "select * from patient where id ="+patient_id;
DataSet ds = new DataSet("patient");
MySqlDataAdapter dAdapter = new MySqlDataAdapter(sql, con);
MySqlCommandBuilder builder = new MySqlCommandBuilder(dAdapter);
dAdapter.Fill(ds, "patient2");
try
{
ds.Tables["patient2"].Rows[0]["picture"] = image;
dAdapter.Update(ds, "patient2");
// ds.Tables["patient2"].Rows[0].AcceptChanges();
con.Close();
con.Open();
}
catch (Exception exs)
{
Console.WriteLine(exs.Message);
}
}
このエラーを修正するにはどうすればよいですか?これが実行された後、次のクエリは実行されません。私はすでに "con.close"と "con.open"のいずれかの方法でコメントしようとしました...何らかの理由でMySQLが突然実行されました
どのようなエラーが表示されますか? – SLaks
具体的なエラーはありません...その次のクエリは実行されません。そのようなmysqlはただオフになりました... –
なぜですか?何が起こるのですか? – SLaks