在SQL Server中保存和输出图片

Sun贵琳

Sun贵琳

2016-01-29 19:33

在SQL Server中保存和输出图片,在SQL Server中保存和输出图片
       介绍
  
  
  
   有时候我们需要保存一些binary data进数据库。SQL Server提供一个叫做image的特殊数据类型供我们保存binary data。Binary data可以是图片、文档等。在这篇文章中我们将看到如何在SQL Server中保存和输出图片。
  
  
  
  建表
  
  
  
   为了试验这个例子你需要一个含有数据的table(你可以在现在的库中创建它,也可以创建一个新的数据库),下面是它的结构:
  
  
  
  Column Name
   Datatype
   Purpose
  
  ID
   Integer
   identity column Primary key
  
  IMGTITLE
   Varchar(50)
   Stores some user friendly title to identity the image
  
  IMGTYPE
   Varchar(50)
   Stores image content type. This will be same as recognized content types of ASP.NET
  
  IMGDATA
   Image
   Stores actual image or binary data.
  
  
  
  
  
  保存images进SQL Server数据库
  
  
  
   为了保存图片到table你首先得从客户端上传它们到你的web服务器。你可以创建一个web form,用TextBox得到图片的标题,用HTML File Server Control得到图片文件。确信你设定了Form的encType属性为multipart/form-data。
  
  
  
  Stream imgdatastream = File1.PostedFile.InputStream;
  
  int imgdatalen = File1.PostedFile.ContentLength;
  
  string imgtype = File1.PostedFile.ContentType;
  
  string imgtitle = TextBox1.Text;
  
  byte[] imgdata = new byte[imgdatalen];
  
  int n = imgdatastream.Read(imgdata,0,imgdatalen);
  
  string connstr=
  
  ((NameValueCollection)Context.GetConfig
  
  ("appSettings"))["connstr"];
  
  SqlConnection connection = new SqlConnection(connstr);
  
  SqlCommand command = new SqlCommand
  
  ("INSERT INTO ImageStore(imgtitle,imgtype,imgdata)
  
  VALUES ( @imgtitle, @imgtype,@imgdata )", connection );
  
  
  
  SqlParameter paramTitle = new SqlParameter
  
  ("@imgtitle", SqlDbType.VarChar,50 );
  
  paramTitle.Value = imgtitle;
  
  command.Parameters.Add( paramTitle);
  
  
  
  SqlParameter paramData = new SqlParameter
  
  ( "@imgdata", SqlDbType.Image );
  
  paramData.Value = imgdata;
  
  command.Parameters.Add( paramData );
  
  
  
  SqlParameter paramType = new SqlParameter
  
  ( "@imgtype", SqlDbType.VarChar,50 );
  
  paramType.Value = imgtype;
  
  command.Parameters.Add( paramType );
  
  
  
  connection.Open();
  
  int numRowsAffected = command.ExecuteNonQuery();
  
  connection.Close();
  
  
  
  从数据库中输出图片
  
  
  
   现在让我们从数据库中取出我们刚刚保存的图片,在这儿,我们将直接将图片输出至浏览器。你也可以将它保存为一个文件或做任何你想做的。
  
  
  
  private void Page_Load(object sender, Sys
展开更多 50%)
分享

猜你喜欢

在SQL Server中保存和输出图片

ASP
在SQL Server中保存和输出图片

如何在SQL Server中保存和输出图片

编程语言 网络编程
如何在SQL Server中保存和输出图片

s8lol主宰符文怎么配

英雄联盟 网络游戏
s8lol主宰符文怎么配

用PHP和MySQL保存和输出图片

PHP
用PHP和MySQL保存和输出图片

SQL Server中保护数据的安全选项

SQLServer
SQL Server中保护数据的安全选项

lol偷钱流符文搭配推荐

英雄联盟 网络游戏
lol偷钱流符文搭配推荐

SYBASE 和 SQL SERVER

编程语言 网络编程
SYBASE 和 SQL SERVER

在SQL Server实例之间传输登录和密码

SQLServer
在SQL Server实例之间传输登录和密码

lolAD刺客新符文搭配推荐

英雄联盟
lolAD刺客新符文搭配推荐

Photoshop教程:绘制质感很强的眼睛

Photoshop教程:绘制质感很强的眼睛

怎样创建.NET Web Service(4)

怎样创建.NET Web Service(4)
下拉加载更多内容 ↓