5

我正在开发一个用于图像处理的可视化 C# 程序。我正在尝试使用 Visual C#(Windows 窗体)和 ADO.NET 将图像添加到 sql 数据库。

我已使用 filestream 方法将图像转换为二进制形式,但图像字节未保存在数据库中。在数据库图像列,它 显示<二进制数据> 并且没有数据被保存!

我尝试了许多插入方法(有和没有存储过程..等),但总是在数据库中得到相同的东西。

private void button6_Click(object sender, EventArgs e)
{
   try
   {
      byte[] image = null;
      pictureBox2.ImageLocation = textBox1.Text;
      string filepath = textBox1.Text;
      FileStream fs = new FileStream(filepath, FileMode.Open, FileAccess.Read);
      BinaryReader br = new BinaryReader(fs);
      image = br.ReadBytes((int)fs.Length);
      string sql = " INSERT INTO ImageTable(Image) VALUES(@Imgg)";
      if (con.State != ConnectionState.Open)
         con.Open();
      SqlCommand cmd = new SqlCommand(sql, con);
      cmd.Parameters.Add(new SqlParameter("@Imgg", image));
      int x= cmd.ExecuteNonQuery();
      con.Close();
      MessageBox.Show(x.ToString() + "Image saved");
   }
}

我没有收到代码错误。图像已转换并且在数据库中完成输入,但在 sql 数据库中显示 < Binary Data >。

4

4 回答 4

5

所选文件流应转换为字节数组。

        FileStream FS = new FileStream(filepath, FileMode.Open, FileAccess.Read); //create a file stream object associate to user selected file 
        byte[] img = new byte[FS.Length]; //create a byte array with size of user select file stream length
        FS.Read(img, 0, Convert.ToInt32(FS.Length));//read user selected file stream in to byte array

现在这工作正常。数据库仍然显示<二进制数据>,但可以使用内存流方法将其转换回图像。

谢谢大家...

于 2013-11-08T07:33:06.247 回答
2

尝试这样的事情:

byte[] fileBytes=System.IO.File.ReadAllBytes("path to file");
System.Data.SqlClient.SqlCommand command = new System.Data.SqlClient.SqlCommand("insert  into table(blob,filename) values (@blob,@name)");
command.Parameters.AddWithValue("blob", fileBytes);
command.Parameters.AddWithValue("name", "filename");
command.ExecuteNonQuery();
于 2013-11-06T16:46:22.510 回答
0

假设您正在使用VARBINARY存储图像(应该是),您可能需要使您的 SqlParameter 类型更强:

所以而不是

cmd.Parameters.Add(new SqlParameter("@Imgg", image));

你会使用:

cmd.Parameters.Add("@Imgg", SqlDbType.VarBinary).Value = (SqlBinary)image;

您还可以使用System.IO.File.ReadAllBytes来缩短将文件路径转换为字节数组的代码。

于 2013-11-06T18:47:24.260 回答
0

执行这个存储过程:

create procedure prcInsert
(
   @txtEmpNo varchar(6),
   @photo image
)
as
begin
   insert into Emp values(@txtEmpNo, @photo)
end

表 Emp:

create table Emp
(
   [txtEmpNo] [varchar](6) NOT NULL,
   imPhoto image
)
于 2013-12-04T10:00:46.830 回答