我要感谢所有在最后一个问题中提供帮助的人。但现在,我对另一种说法有问题,即 saveimageto MS 访问。首先我想问一下,关于ms访问数据库,Datatype应该放附件吗?
我的代码:
private void button2_Click(object sender, EventArgs e)
{
OleDbCommand cmd = new OleDbCommand();
cmd.CommandType = CommandType.Text;
cmd.CommandText = "insert into Table1 (id,picture) values ('" + textBox1.Text + "')";
cmd.Connection = con;
con.Open();
cmd.ExecuteNonQuery();
System.Windows.Forms.MessageBox.Show("Created", "Caption", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
con.Close();
}
我使用 openFIledialog 将图片插入图片框。