• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

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

sqlserver 搞代码 7年前 (2018-06-16) 150次浏览 已收录 0个评论

建表   

为了试验这个例子你需要一个含有数据的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数据库  

http://www.gaodaima.com/35906.html如何在SQL Server中保存和输出图片_sqlserver

为了保存图片到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文件。

欢迎大家阅读《如何在SQL Server中保存和输出图片_sqlserver,跪求各位点评,若觉得好的话请收藏本文,by 搞代码


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:如何在SQL Server中保存和输出图片_sqlserver

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址