sql >> データベース >  >> RDS >> Sqlserver

asp.netのデータベースから画像を取得します

    generic http handlerを作成します 次のように

    using System;
    using System.Configuration;
    using System.Web;
    using System.IO;
    using System.Data;
    using System.Data.SqlClient;
    
    public class ShowImage : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
           Int32 empno;
           if (context.Request.QueryString["id"] != null)
              empno = Convert.ToInt32(context.Request.QueryString["id"]);
           else
              throw new ArgumentException("No parameter specified");
    
           context.Response.ContentType = "image/jpeg";
           Stream strm = ShowEmpImage(empno);
           byte[] buffer = new byte[4096];
           int byteSeq = strm.Read(buffer, 0, 4096);
    
           while (byteSeq > 0)
           {
               context.Response.OutputStream.Write(buffer, 0, byteSeq);
               byteSeq = strm.Read(buffer, 0, 4096);
           }       
           //context.Response.BinaryWrite(buffer);
        }
    
        public Stream ShowEmpImage(int empno)
        {
             string conn = ConfigurationManager.ConnectionStrings["EmployeeConnString"].ConnectionString;
             SqlConnection connection = new SqlConnection(conn);
             string sql = "SELECT empimg FROM EmpDetails WHERE empid = @ID";
             SqlCommand cmd = new SqlCommand(sql,connection);
             cmd.CommandType = CommandType.Text;
             cmd.Parameters.AddWithValue("@ID", empno);
             connection.Open();
             object img = cmd.ExecuteScalar();
             try
            {
                return new MemoryStream((byte[])img);
            }
            catch
            {
                return null;
            }
            finally
           {
                connection.Close();
           }
        }
    
        public bool IsReusable
        {
            get
            {
                 return false;
            }
        }
    
    
    }
    

    次のように画像を表示します

     Image1.ImageUrl = "~/ShowImage.ashx?id=" + id;
    

    以下にいくつかのリンクがあります
    データベースからGridViewに画像を表示しますか?
    Asp.netのイメージコントロールでデータベースに画像を表示する方法は?
    ASP.netのデータベースから画像を表示しますC#
    http://www.dotnetcurry.com/ShowArticle.aspx?ID=129



    1. OracleExpressでトリガーを作成する

    2. 転送用のデータベースのエクスポート

    3. SQLServerのAlwaysOn可用性グループを監視するさまざまな方法

    4. SQL Server2005DateAddを使用して日付に日を追加する