Problem With Clob and Blob

G

Guest

I am using .net and oracle 9i. I created one store procedure in oracle who
takes clob field as input and inserts in table. In .net I am using
OracleClient i-e system.data.oracleclient namespace class to call this store
procedure. when I call this store procedure exception occurs that data is
large. I searched on internet and found that .Net Oracle Data Access Provider
restricts data to only 32k. So no matter you are using clob or blob, but
limit is 32k, means you can insert max 32k of data from .net to oracle .....
Can anyone tell me solution of it.
 
P

Paul Clement

On Tue, 9 May 2006 02:13:01 -0700, Altaf Al-Amin Najwani

¤ I am using .net and oracle 9i. I created one store procedure in oracle who
¤ takes clob field as input and inserts in table. In .net I am using
¤ OracleClient i-e system.data.oracleclient namespace class to call this store
¤ procedure. when I call this store procedure exception occurs that data is
¤ large. I searched on internet and found that .Net Oracle Data Access Provider
¤ restricts data to only 32k. So no matter you are using clob or blob, but
¤ limit is 32k, means you can insert max 32k of data from .net to oracle .....
¤ Can anyone tell me solution of it.

See if the following helps:

How to pass a BLOB as a parameter to an Oracle package by using the .NET Managed Provider for Oracle
http://support.microsoft.com/default.aspx?scid=kb;en-us;322796


Paul
~~~~
Microsoft MVP (Visual Basic)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top