标题:从数据库中读取图片的问题
只看楼主
lq_2008
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-9-24
 问题点数:0 回复次数:0 
从数据库中读取图片的问题
C#从数据库读图片的问题
我以sqlserver2K中northwind数据库中categories表为例对里面的图片读取,但运行不能读出来.

protected void Button3_Click(object sender, EventArgs e)
    {
        SqlConnection connection = new SqlConnection("server=(local);database=northwind;user id=sa;pwd=");
        connection.Open();
        SqlCommand comm = new SqlCommand("select * from categories", connection);
        SqlDataReader reader = comm.ExecuteReader();
        while (reader.Read())
        {
            Response.ContentType ="image/jpeg";
            Response.BinaryWrite((byte[])reader["Picture"]);  
        }
    }
搜索更多相关主题的帖子: 数据库 connection reader SqlCommand 
2008-01-03 14:32



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-195633-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.600057 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved