佳礼资讯网

 找回密码
 注册

ADVERTISEMENT

查看: 854|回复: 3

救命啊!!怎么insert照片进database啊!!

[复制链接]
发表于 20-12-2006 05:33 PM | 显示全部楼层 |阅读模式
我的database是 sql server 2000,language是 C#

除了insert 照片 as binary,还有别的方法吗?

因为binary 的话,retrieve出来的时候只能一次display一张而已.
有什么办法可以一次display全部照片的(from database)?

[ 本帖最后由 喵喵大战 于 20-12-2006 05:54 PM 编辑 ]
回复

使用道具 举报


ADVERTISEMENT

 楼主| 发表于 20-12-2006 05:40 PM | 显示全部楼层
我的coding,从网站学来的。
一次只能display一张照片


System.Int32 _height = 110;
System.Int32 _width = 200;
string sqlComm ="SELECT UploadID,UploadImage FROM images_upload";

sqlConnection1.Open();
SqlCommand command = new SqlCommand(sqlComm,sqlConnection1);

SqlDataReader dr;
dr = command.ExecuteReader();

Response.ContentType = "image/jpeg";

while (dr.Read())
{
      System.Drawing.Image _image= System.Drawing.Image.FromStream( new System.IO.MemoryStream( (byte[])dr["UploadImage"] ) );

      System.Drawing.Image _newimage = _image.GetThumbnailImage( _width, _height, null, new System.IntPtr() );

      _newimage.Save( System.Web.HttpContext.Current.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg );


}

dr.Close();
sqlConnection1.Close();
回复

使用道具 举报

发表于 23-12-2006 05:31 PM | 显示全部楼层
hello dude, try storing the photo to a path, and copy & paste the photo to the specified path mentioned, then when you retreat, call the path then the photo will be display; of course 1 path 1 photo; pm me if you have more difficulties.
回复

使用道具 举报

发表于 24-12-2006 01:26 AM | 显示全部楼层
原帖由 喵喵大战 于 20-12-2006 05:40 PM 发表
我的coding,从网站学来的。
一次只能display一张照片


System.Int32 _height = 110;
System.Int32 _width = 200;
string sqlComm ="SELECT UploadID,UploadImage FROM images_upload";
...


如果我没猜错的话, 这应该是你的 record 问题... 你的 record 有几个呀?
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

 

ADVERTISEMENT



ADVERTISEMENT



ADVERTISEMENT

ADVERTISEMENT


版权所有 © 1996-2023 Cari Internet Sdn Bhd (483575-W)|IPSERVERONE 提供云主机|广告刊登|关于我们|私隐权|免控|投诉|联络|脸书|佳礼资讯网

GMT+8, 14-11-2024 04:45 AM , Processed in 1.203533 second(s), 24 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表