开发者

How to store an image into database

How can I use openfiledialog and a picturebox and upload an image and stor开发者_高级运维e it into SQL Server


If you g0ogled c# store image in sql, the first 2 results would have been

Store or save images in SQL Server database using C#

Store or Save images in SQL Server


You need to keep field datatype as varbinary(Max) in the database table. then convert image into byte array. then pass this byte array as parameter respect to your varbinary field. it will be saved in your database. while retrieving, get value from database as byte array the convert it into Image object. hope this sequence helps you. or more code example you can find here

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜