Ado.net图像操作
在我的 C#
winform
应用程序中。我已成功将程序连接到MS SQL Server 2005
,现在我想添加一个Image
类型的新列,如何将图像插入DB并把它拿回来?在我们的业务逻辑类中我们将声明哪种数据类型变量?
In my C#
winform
app. I connected my program to the MS SQL Server 2005
successfully, now I want to add a new column of type Image
, how can I Insert the Image in the DB
and get it back? and in our Business Logic Class
which data type variable we will declare?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要以字节为单位获取图像,如下面的代码
编辑的代码示例
您需要将图像属性定义为 Byte[] 并使用上面得到的 bytes[] 分配该属性。
you need to get the image in bytes as shown in below code
Edited Code Example
you need to define the image property as Byte[] and assign this property with the bytes[] got above.