您好,欢迎来到思海网络,我们将竭诚为您提供优质的服务! 诚征网络推广 | 网站备案 | 帮助中心 | 软件下载 | 购买流程 | 付款方式 | 联系我们 [ 会员登录/注册 ]
促销推广
客服中心
业务咨询
有事点击这里…  531199185
有事点击这里…  61352289
点击这里给我发消息  81721488
有事点击这里…  376585780
有事点击这里…  872642803
有事点击这里…  459248018
有事点击这里…  61352288
有事点击这里…  380791050
技术支持
有事点击这里…  714236853
有事点击这里…  719304487
有事点击这里…  1208894568
有事点击这里…  61352289
在线客服
有事点击这里…  531199185
有事点击这里…  61352288
有事点击这里…  983054746
有事点击这里…  893984210
当前位置:首页 >> 技术文章 >> 文章浏览
技术文章

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

添加时间:2013-5-7 17:42:06  添加: 思海网络 
为了试验这个例子你需要一个含有数据的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文件。

关键字:SQL Server、数据库、服务器

分享到:

顶部 】 【 关闭
版权所有:佛山思海电脑网络有限公司 ©1998-2024 All Rights Reserved.
联系电话:(0757)22630313、22633833
中华人民共和国增值电信业务经营许可证: 粤B1.B2-20030321 备案号:粤B2-20030321-1
网站公安备案编号:44060602000007 交互式栏目专项备案编号:200303DD003  
察察 工商 网安 举报有奖  警警  手机打开网站