Reading images from BLOB fields is displayed in the browser

Source: Internet
Author: User
Tags oracleconnection

Public byte [] getproimg (string jid)
{
Byte [] buffer = NULL;

Using (oracleconnection conn = new oracleconnection (Pub. connectionstring ))
{
Try
{
Conn. open ();
Oraclecommand cmd = new oraclecommand ();
Cmd. Connection = conn;
Cmd. commandtext = "select pdc_fj from TB t where jid =: p1 ";
Cmd. Parameters. addwithvalue ("p1", jid );
Oracledatareader DR = cmd. executereader (commandbehavior. sequentialaccess );
If (dr. Read ())
{
Repeated lelob mylob = dr. get1_lelob (0 );
Int mylength = convert. toint32 (mylob. Length );
Buffer = new byte [mylength];
Mylob. Read (buffer, 0, mylength );
}
Dr. Close ();
}
Catch (system. Data. oracleclient. oracleexception ex)
{
Throw new exception (ex. Message );
}
Finally
{
Conn. Close ();
}

}
Return buffer;
}

IMG. aspx:

Protected void page_load (Object sender, eventargs E)
{
Jhac. BLL. Product bllpro = new jhac. BLL. Product ();
String jid = "";
If (page. request ["jid"]! = NULL & page. request ["jid"]. tostring ()! = "")
{
Jid = page. request ["jid"]. tostring ();
}
Byte [] imgbyte = bllpro. getproimg (jid );
If (imgbyte! = NULL)
{
This. response. Clear ();
This. response. binarywrite (imgbyte );
}
}

Reading images from BLOB fields is displayed in the browser

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.