我要感謝所有誰在上一個問題中提供幫助。 但現在,我遇到了另一個聲明,即saveimageto MS訪問問題。 首先,我想問一下,在ms access數據庫中,Datatype應該放置附件嗎?C#將圖片插入Ms Access
我的代碼:
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();
}
我插入我的圖片PictureBox的使用打開文件對話框。
Hi Tham JunKai, 請問你能說明是什麼問題嗎? – Micha 2013-03-07 14:25:37