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

求代码,最好带注释,谢谢... 求代码,最好带注释,谢谢 展开
 我来答
在全敬燕
2020-04-17 · TA获得超过3.8万个赞
知道大有可为答主
回答量:1.2万
采纳率:30%
帮助的人:900万
展开全部
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;
1983_chen
2010-01-21 · TA获得超过124个赞
知道答主
回答量:102
采纳率:0%
帮助的人:0
展开全部
通常有两种方式:
第一,图片放在固定的文件夹中,把图片的路径保存到数据库表格中;
第二,把图片保存成流的形式直接存到数据库表格中,相对比第一种麻烦,费时。
一般采用第一种方式较多,代码自己找吧,或者找本C#数据库的书,都有。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
嗳你不知可否
2016-01-16 · TA获得超过7183个赞
知道大有可为答主
回答量:4507
采纳率:81%
帮助的人:1121万
展开全部

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();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
蝴蝶飞起来了
2010-01-21 · TA获得超过1058个赞
知道小有建树答主
回答量:834
采纳率:50%
帮助的人:690万
展开全部
最关键的是下面一小段
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;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
寒易凝
2015-12-23 · TA获得超过181个赞
知道小有建树答主
回答量:159
采纳率:75%
帮助的人:80.7万
展开全部
图片存储有两种方式。
第一种方式,将图片转换成二进制数据直接存储。这种方式不建议采用。
第二种方式,将图片的存放路劲存放在相应的字段里面。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式