C#, DB

Image图像存入DB与读取

上传的图片可以存到FileServer,也可以存到Database,

存在FileServer简单方便,但是安全性有欠缺,而且如果FileServer有改变,很多的Rowdata也有可能跟着改变。

存在Database的话,有点繁琐,但是安全性,和以后的迁移九方便多了,但是这就要求DB够大。

这里分享下img存入Database的方法,Function:

using System.Data.SqlClient
using System.IO;

1.将Image图像文件存入到数据库中

2.从SQL Server数据库读取Image类型的数据,并转换成bytes[]或Image图像文件

 

Pls call me CPP.
Posts created 150

发表评论

Related Posts

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top