我的C#代码正在使用OLE数据库。在标题为 ProjectParty 的表格中,我通过WinForm以字节为单位保存图片值。话虽这么说,我有另一种形式,应该允许用户更新表的值,包括图片。
我试图使用以下代码将用户更改更新回表。
private void btnSaveChanges_Click(object sender, EventArgs e)
{
OleDbConnection oleDbConn = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=HesabKetab.accdb;Persist Security Info=False");
OleDbCommand oleDbCmd = new OleDbCommand("UPDATE ProjectParty SET title=@title, manager=@manager, tel=@tel, mobile=@mobile, address=@address, picture=@picture "
+ "WHERE ID=@id",oleDbConn);
//add parameters
oleDbCmd.Parameters.AddWithValue("@title", txtInstTitle.Text);
oleDbCmd.Parameters.AddWithValue("@manager", txtInstManager.Text);
oleDbCmd.Parameters.AddWithValue("@tel", txtOfficePhone.Text);
oleDbCmd.Parameters.AddWithValue("@mobile", txtMobileNo.Text);
oleDbCmd.Parameters.AddWithValue("@address", txtAddress.Text);
oleDbCmd.Parameters.AddWithValue("@id", Convert.ToInt32(comboInstID.SelectedValue.ToString()));
byte[] picByte = null;
if(pictureBoxInstLogo.Image!=DBNull.Value){
picByte= (byte[])pictureBoxInstLogo.Image;
}
oleDbCmd.Parameters.AddWithValue("@picture", picByte);
try
{
oleDbConn.Open();
oleDbCmd.ExecuteNonQuery();
}
catch (Exception ex) { MessageBox.Show(ex.Message, "خطای دیتابیس", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); }
}
我收到语法错误,
运算符!=不能应用于System.Drawing.Image和System.DBNull类型的操作数。
和
无法将System.Drawing.Image隐式转换为byte []。
我应该如何检查pictureBox是否有图像,如果是,将其内容保存回数据库?
答案 0 :(得分:1)
pictureBoxInstLogo.Image != null
这将检查图片框是否有图像,
如果它有图像,则需要使用locacation将图像转换为字节;
picByte = System.IO.File.ReadAllBytes(pictureBoxInstLogo.ImageLocation)