从openfiledialog获取名称后,如何将图像BLOB存储在访问数据库中?

时间:2010-09-16 17:26:11

标签: c# ms-access

我正在开发一个具有Access数据库的C#应用​​程序。我想要做的是允许用户通过“openfiledialog”选择图像。然后,我想将图像存储在BLOB字段中的访问数据库的一个表中。我通过互联网搜索,但没有发现任何帮助。我希望你能帮助我。

if (openFileDialog1.ShowDialog() == DialogResult.OK)
{

     // textBox1.Show(openFileDialog1.FileName.ToString());
     // MessageBox.Show(openFileDialog1.FileName.ToString());
     textBox1.Text = openFileDialog1.FileName.ToString();

     String filename = openFileDialog1.FileName.ToString();
     byte[] buffer = File.ReadAllBytes(filename);

     using (var conn = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=Policias.accdb"))

     using (var cmd = conn.CreateCommand())
     {                 
        cmd.CommandText = "INSERT INTO DetallesMunicipio(imagen) VALUES (@imagen)";
        cmd.Parameters.AddWithValue("@imagen", buffer);
        conn.Open();
        cmd.ExecuteNonQuery();

     }
     }
     else
     {
         MessageBox.Show("Porfavor selecciona una imagen");

     }

}

但现在我怎么能确定它存储在访问数据库中?

3 个答案:

答案 0 :(得分:2)

示例:

string filename = "foo.txt"; // TODO: fetch from file dialog
byte[] buffer = File.ReadAllBytes(filename);

using (var conn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=foo.mdb"))
using (var cmd = conn.CreateCommand())
{
    cmd.CommandText = "INSERT INTO MyTable VALUES (@Name, @Data)";
    cmd.Parameters.AddWithValue("@Name", filename);
    cmd.Parameters.AddWithValue("@Data", buffer);
    cmd.ExecuteNonQuery();
}

答案 1 :(得分:0)

您想要做的事情类似于以下内容。

using (OpenFileDialog fileDialog = new OpenFileDialog){
   if(fileDialog.ShowDialog == DialogResult.OK){
       using (System.IO.FileInfo fileToSave = new System.IO.FileInfo(fileDialog.FilePath)){
          MemoryStream ms = System.IO.FileStream(fileToSave.FullNae, IO.FileMode.Open);
           //Here you can copy the ms over to a byte array to save into your blob in your database.
       }

   }
}

答案 2 :(得分:0)

我会使用File.ReeadAllBytes(file)并将数据[]保存在数据库中。