新客网WWW.XKER.COM:致力做中国最专业的网络学院!
学院: 操作系统 - 网络应用 - 服务器 - 网络安全 - 工具软件 - 办公软件 - Web开发 - 数据库 - 网页设计 - 图形图像 - 媒体动画 - 硬件学堂 - 存储频道 - QQ专区
您的位置:首页 > 软件开发 > 数据库 > sql server教程 > 正文:解析:怎样在SQL Server中保存和输出图片

解析:怎样在SQL Server中保存和输出图片

新客网 XKER.COM 2007-11-05 来源: 1916933 收藏本文

首先,你需要一个含有数据的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, System.EventArgs e) 
   { 
   string imgid =Request.QueryString["imgid"]; 
   string connstr=((NameValueCollection) 
   Context.GetConfig("appSettings"))["connstr"]; 
   string sql="SELECT imgdata, imgtype FROM ImageStore WHERE id = " 
   + imgid; 
   SqlConnection connection = new SqlConnection(connstr); 
   SqlCommand command = new SqlCommand(sql, connection); 
   connection.Open(); 
   SqlDataReader dr = command.ExecuteReader(); 
   if(dr.Read()) 
   { 
   Response.ContentType = dr["imgtype"].ToString(); 
   Response.BinaryWrite( (byte[]) dr["imgdata"] ); 
   } 
   connection.Close(); 
   }   

以上的代码中使用了一个已经打开的数据库,你可以通过datareader选择images。接着用Response.BinaryWrite代替Response.Write来显示image文件。

收藏】 【评论】 【推荐】 【投稿】 【打印】 【关闭
发表评论
要记得去论坛讨论,点击注册新会员匿名评论
评论内容:不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
阅读排行
随机推荐
实用信息推荐