Winforms:如何使用 C# 将图片上传到 SQL Server 数据库
Posted
技术标签:
【中文标题】Winforms:如何使用 C# 将图片上传到 SQL Server 数据库【英文标题】:Winforms: How to upload a picture into SQL Server database using C# 【发布时间】:2011-01-23 20:05:59 【问题描述】:我想将图像上传到我的 SQL Server 数据库。我有两个按钮,一个图片框。使用浏览按钮,我可以从磁盘中选择文件,并将其显示在图片框中。
问题是我无法将图片从图片框保存到数据库中。
请帮我写代码。欣赏它。
【问题讨论】:
【参考方案1】:您可以直接从其路径保存图像(您已经拥有它)。
试试这个:
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();
【讨论】:
【参考方案2】:Sending/Receiving PictureBox Image in C# To/From Microsoft SQL SERVER
自己没试过代码。
【讨论】:
以上是关于Winforms:如何使用 C# 将图片上传到 SQL Server 数据库的主要内容,如果未能解决你的问题,请参考以下文章
使用 c# winforms 将数据更新/保存到 SQL 数据库表
您如何解决此参数无效错误? (C#、VisualStudio、WinForms)