Winforms:如何使用C#将图片上传到SQL Server数据库

时间:2010-03-04 19:27:58

标签: c# sql-server database winforms

我想将图片上传到我的SQL Server数据库。我有两个按钮,一个图片框。使用浏览按钮,我可以从磁盘中选择文件,并将其显示在图片框中。

问题是我无法将图片从picturebox保存到数据库中。

请帮我解决问题。欣赏它。

2 个答案:

答案 0 :(得分:5)

您可以直接从路径中保存图像(已经有了)。

试试这个:

    byte[] img = File.ReadAllBytes("your image path");

    mySqlCommand = "INSERT INTO MyTable(Image) VALUES(@Image)";//mySqlCommand is a SqlCommand, and @Image is a parameter 
    mySqlCommand.Parameters.AddWithValue("@Image", img);
    mySqlCommand.ExecuteNonQuery();

答案 1 :(得分:2)