Oracle BLOB data type and C#

Oracle BLOB data type and C#
 
When I attempt to my customers tend to use Oracle Database or exist Oracle Database users they always ask “you have data type such as Large Object (BLOB), CLOB, and NCLOB how can we read or write in .Net”. I managed to find an article with complete working sample, from Mark Williams again at http://www.oracle.com/technology/oramag/oracle/05-nov/o65odpnet.html.
 
Take a quick look of the code.
 
private void btnDisplay_Click(object sender, System.EventArgs e)
    {
      // create and open connection
      // change for your environment
      string connStr = "User Id=pm; Password=pm; Data Source=orcllx; Pooling=false";
      OracleConnection con = new OracleConnection(connStr);
      try
      {
        con.Open();
      }
      catch (OracleException ex)
      {
        MessageBox.Show(ex.Message);
      }
 
      // statement to get a blob
      string sql = "select ad_composite from print_media where product_id=3106 and
                   ad_id=13001";
 
      // create command object
      // InitialLOBFetchSize
      //  defaults to 0
      OracleCommand cmd = new OracleCommand(sql, con);
 
      cmd.InitialLOBFetchSize = 8192;
 
      // create a datareader
      OracleDataReader dr = cmd.ExecuteReader();
 
      // read the single row result
      try
      {
        dr.Read();
      }
      catch (OracleException ex)
      {
        MessageBox.Show(ex.Message);
      }
 
      // use typed accessor to retrieve the blob
      OracleBlob blob = dr.GetOracleBlob(0);
 
      // create a memory stream from the blob
      MemoryStream ms = new MemoryStream(blob.Value);
 
      // set the image property equal to a bitmap
      // created from the memory stream
      pictureBox1.Image = new Bitmap(ms);
    }
  }
 
To me, I will pay attention to OracleBlob and MemoryStream object in the code above. The OracleDataReader will be like the DataReader that we are familiar in ADO.NET.
 
I actually run this code from my laptop and accessing to Oracle Database 10g Enterprise that I set up in a Oracle Enterprise Linux box, it works fine.

About chanmingman

Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years. Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net. Bookmark the permalink.

5 Responses to Oracle BLOB data type and C#

  1. Pingback: Declare a Variable and Assign the Value to the Variable from Query – Oracle | Chanmingman's Blog

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.