cn.Open();
OleDbDataAdapter da = new OleDbDataAdapter("select Photo Account WHERE UserName like Purchasedby", cn);
DataSet ds = new DataSet();
da.Fill(ds);
cn.Close();
byte[] content = (byte[])ds.Tables[0].Rows[0].ItemArray[0];
MemoryStream stream = new MemoryStream(content);
pictureBox1.Image = Image.FromStream(stream);
它說該參數無效>> 我應該怎麼做?無法檢索圖片從女士訪問圖片框
你的SQL對我來說看起來不合法。 – Dai 2013-03-20 01:31:59
這是一個MS Access數據庫類型.. – 2013-03-20 01:40:05