Oracle
 sql >> डेटाबेस >  >> RDS >> Oracle

OracleLob को किसी फ़ंक्शन के पैरामीटर के रूप में पास करना

using(reader)
{
      //Obtain the first row of data.
      reader.Read();
      //Obtain the LOBs (all 3 varieties).
      OracleLob BLOB = reader.GetOracleLob(1);
      ...

      //Example - Reading binary data (in chunks).
      byte[] buffer = new byte[4096];
      while((actual = BLOB.Read(buffer, 0, buffer.Length)) >0)
         Console.WriteLine(BLOB.LobType + 
            ".Read(" + buffer + ", " + buffer.Length + ") => " + actual);

      ...
}

मैं व्यक्तिगत रूप से इस तरह से डेटाटेबल में कॉलम बनाउंगा और जोड़ूंगा लेकिन यह आप पर निर्भर है कि आप इसे इस तरह से आजमाएं या किसी अन्य तरीके से जो आप जानते हैं वह काम करेगा

DataTable table = new DataTable("ImageTable"); //Create a new DataTable instance.

DataColumn column0 = new DataColumn("id"); //Create the column.
column.DataType = System.Type.GetType("System.String"); //Type string 

DataColumn column1 = new DataColumn("image"); //Create the column.
column.DataType = System.Type.GetType("System.Byte[]"); //Type byte[] to store image bytes.
column.AllowDBNull = true;
column.Caption = "My Image";

table.Columns.Add(column0); //Add the column to the table.
table.Columns.Add(column1); //Add the column to the table.

Then, add a new row to this table and set the value of the MyImage column.

DataRow row = table.NewRow();
row["MyImage"] = <Image byte array>;
tables.Rows.Add(row);



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Oracle SQL कथन में अल्पविराम द्वारा अलग किए गए मानों की सूची बनाना

  2. यूनिक्सटाइम को डेटाटाइम एसक्यूएल (ओरेकल) में कनवर्ट करें

  3. मुझे Oracle की अनुक्रमणिका संगठित तालिका का उपयोग कब करना चाहिए? या, मुझे कब नहीं करना चाहिए?

  4. हाइबरनेट के org.hibernate.Query . के माध्यम से क्लॉब डेटा को स्ट्रिंग (उत्सुक) के रूप में लोड करना

  5. एकाधिक कॉलम छोड़ना:PLSQL और user_tab_cols