数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

在SQL Server中保存和输出图片的具体方法


发布日期:2024年07月18日
 
在SQL Server中保存和输出图片的具体方法

介绍

有时候我们需要保存一些binary data进数据库SQL Server提供一个叫做image的特殊数据类型供我们保存binary dataBinary data可以是图片文档等在这篇文章中我们将看到如何在SQL Server中保存和输出图片

建表

为了试验这个例子你需要一个含有数据的table(你可以在现在的库中创建它也可以创建一个新的数据库)下面是它的结构

Column Name

Datatype

Purpose

ID

Integer

identity column Primary key

IMGTITLE

Varchar()

Stores some user friendly title to identity the image

IMGTYPE

Varchar()

Stores image content type This will be same as recognized content types of ASPNET

IMGDATA

Image

Stores actual image or binary data

保存images进SQL Server数据库

为了保存图片到table你首先得从客户端上传它们到你的web服务器你可以创建一个web form用TextBox得到图片的标题用HTML File Server Control得到图片文件确信你设定了Form的encType属性为multipart/formdata

Stream imgdatastream = FilePostedFileInputStream;

int imgdatalen = FilePostedFileContentLength;

string imgtype = FilePostedFileContentType;

string imgtitle = TextBoxText;

byte[] imgdata = new byte[imgdatalen];

int n = imgdatastreamRead(imgdataimgdatalen);

string connstr=

((NameValueCollection)ContextGetConfig

(appSettings))[connstr];

SqlConnection connection = new SqlConnection(connstr);

SqlCommand command = new SqlCommand

(INSERT INTO ImageStore(imgtitleimgtypeimgdata)

VALUES ( @imgtitle @imgtype@imgdata ) connection );

SqlParameter paramTitle = new SqlParameter

(@imgtitle SqlDbTypeVarChar );

paramTitleValue = imgtitle;

commandParametersAdd( paramTitle);

SqlParameter paramData = new SqlParameter

( @imgdata SqlDbTypeImage );

paramDataValue = imgdata;

commandParametersAdd( paramData );

SqlParameter paramType = new SqlParameter

( @imgtype SqlDbTypeVarChar );

paramTypeValue = imgtype;

commandParametersAdd( paramType );

connectionOpen();

int numRowsAffected = commandExecuteNonQuery();

connectionClose();

从数据库中输出图片

现在让我们从数据库中取出我们刚刚保存的图片在这儿我们将直接将图片输出至浏览器你也可以将它保存为一个文件或做任何你想做的

private void Page_Load(object sender SystemEventArgs e)

{

string imgid =RequestQueryString[imgid];

string connstr=((NameValueCollection)

ContextGetConfig(appSettings))[connstr];

string sql=SELECT imgdata imgtype FROM ImageStore WHERE id =

+ imgid;

SqlConnection connection = new SqlConnection(connstr);

SqlCommand command = new SqlCommand(sql connection);

connectionOpen();

SqlDataReader dr = commandExecuteReader();

if(drRead())

{

ResponseContentType = dr[imgtype]ToString();

ResponseBinaryWrite( (byte[]) dr[imgdata] );

}

connectionClose();

}

在上面的代码中我们使用了一个已经打开的数据库通过datareader选择images接着用ResponseBinaryWrite代替ResponseWrite来显示image文件

               

上一篇:SQLServer定期自动备份

下一篇:部署MicrosoftSQLServer2005群集