码迷,mamicode.com
首页 > 数据库 > 详细

asp.net将图片转成二进制存入数据库

时间:2014-12-04 11:32:54      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   on   

一、代码如下

bubuko.com,布布扣
 1  int code = int.Parse(this.TextBox1.Text);//图片编码
 2         string value = this.FileUpload1.PostedFile.FileName.ToString();//图片路径
 3         string type = value.Substring(value.LastIndexOf(".") + 1);
 4         FileStream fs = File.OpenRead(value);
 5         byte[] content = new byte[fs.Length];
 6         fs.Read(content, 0, content.Length);
 7         fs.Close();
 8 
 9         string sqlconfrom = System.Web.Configuration.WebConfigurationManager.ConnectionStrings["sqlConnectionStrings"].ToString();
10         SqlConnection con = new SqlConnection(sqlconfrom);
11         string sql = " insert into Image_Table values ( ‘1‘,@content,@code ) ";
12 
13         SqlCommand cmd = new SqlCommand(sql, con);
14         cmd.Parameters.Add(new SqlParameter("@content", SqlDbType.Image));
15         cmd.Parameters["@content"].Value = content;
16 
17         cmd.Parameters.Add(new SqlParameter("@code", SqlDbType.Int));
18         cmd.Parameters["@code"].Value = code;
19         con.Open();
20         int result = cmd.ExecuteNonQuery();
21         if (result > 0)
22         {
23             Response.Write("插入成功!");
24         }
25         con.Close();
图片二进制存入数据库

 

asp.net将图片转成二进制存入数据库

标签:style   blog   http   io   ar   color   os   sp   on   

原文地址:http://www.cnblogs.com/guozh-bk/p/Qcod.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!