C#怎么将图片保存到SQL数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#怎么将图片保存到SQL数据库相关的知识,希望对你有一定的参考价值。

求代码,最好带注释,谢谢

this.pictureBox1.Image
=
Image.FromStream(this.openFileDialog1.OpenFile());
//获取当前图片的路径
string
path
=
openFileDialog1.FileName.ToString();
//将制定路径的图片添加到FileStream类中
FileStream
fs
=
new
FileStream(path,
FileMode.Open,
FileAccess.Read);
//通过FileStream对象实例化BinaryReader对象
BinaryReader
br
=
new
BinaryReader(fs);
//通过BinaryReader类对象的ReadBytes()方法将FileStream类对象转化为二进制数组
byte[]
imgBytesIn
=
br.ReadBytes(Convert.ToInt32(fs.Length));第二步:
//将图片添加到数据库中
string
sql="insert
into
pic
values(@pic)";
SqlParameter[]
param
=
new
SqlParameter[]

new
SqlParameter("@pic",
imgBytesIn)
;
DBHelper.GetExecuteQuery(sql,
param);第三步:
//将图片从数据库中取出
string
sql="select
*
from
pic
where
id=0";
SqlDataReader
reader
=
DBHelper.GetExecuteReader(sql,
null);
MemoryStream
mss
=
null;
参考技术A 通常有两种方式:
第一,图片放在固定的文件夹中,把图片的路径保存到数据库表格中;
第二,把图片保存成流的形式直接存到数据库表格中,相对比第一种麻烦,费时。
一般采用第一种方式较多,代码自己找吧,或者找本C#数据库的书,都有。本回答被提问者采纳
参考技术B

C# 将图片保存到SQL数据库:

rivate void button2_Click_1(object sender, System.EventArgs e)

string pathName;
if (this.openFileDialog1.ShowDialog()==System.Windows.Forms.DialogResult.OK)

pathName = this.openFileDialog1.FileName;
System.Drawing.Image img = System.Drawing.Image.FromFile(pathName);
this.pictureBox1.Image = img;
//将图像读入到字节数组
System.IO.FileStream fs = new System.IO.FileStream(pathName,System.IO.FileMode.Open,System.IO.FileAccess.Read);
byte[] buffByte = new byte[fs.Length];
fs.Read(buffByte,0,(int)fs.Length);
fs.Close();
fs = null;
//建立Command命令
string comm = @"Insert into table1(img,name) values(@img,@name)";
this.sqlCommand1 = new System.Data.SqlClient.SqlCommand ();
this.sqlCommand1.CommandType = System.Data.CommandType.Text ;
this.sqlCommand1.CommandText = comm;
this.sqlCommand1.Connection = this.sqlConnection1 ;
//创建Parameter
this.sqlCommand1.Parameters.Add("@img",System.Data.SqlDbType.Image);
this.sqlCommand1.Parameters[0].Value = url地址

this.sqlCommand1.Parameters.Add("@name",System.Data.SqlDbType.VarChar);
this.sqlCommand1.Parameters[1].Value =
(pathName.LastIndexOf("\\\\")+1);
try

this.sqlConnection1.Open();
this.sqlCommand1.ExecuteNonQuery();
this.sqlConnection1.Close();

catch(System.Exception ee)

MessageBox.Show(ee.Message );

buffByte = null; 
this.FillListBox();

参考技术C 最关键的是下面一小段
int length = postedFile.ContentLength;
byte[] content = new byte[length];
postedFile.InputStream.Read(content, 0, length);//读取图片内容二进制

private void SaveImage(Web.HttpPostedFile postedFile, string fileName)

string sqlstr = " insert into [UpLoad_TEMP]([fileName],[fileLength],[fileContent]) values(@filename,@filelength,@filecontent)";
int length = postedFile.ContentLength;
byte[] content = new byte[length];
postedFile.InputStream.Read(content, 0, length);//读取图片内容二进制

System.Data.SqlClient.SqlParameter[] parameters =

new System.Data.SqlClient.SqlParameter("@filename", fileName),
new System.Data.SqlClient.SqlParameter("@filelength", postedFile.ContentLength),
new System.Data.SqlClient.SqlParameter("@filecontent", content)
;

//to do 执行sql

content = null;
参考技术D 图片存储有两种方式。
第一种方式,将图片转换成二进制数据直接存储。这种方式不建议采用。
第二种方式,将图片的存放路劲存放在相应的字段里面。

以上是关于C#怎么将图片保存到SQL数据库的主要内容,如果未能解决你的问题,请参考以下文章

C# 图片保存到数据库和从数据库读取图片并显示

图片保存到数据库以及C#读取图片

如何更好地在 c# (asp.net) 和 SQL Server 上保存和加载图片?

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

用vs2010编写C#程序,将图片保存到一个文件夹中,下次循环覆盖保存,提示gdi+中发生一般性错误。。。

C# winform 中根据数据库保存的路径删除硬盘里的文件(图片)问题