TravisLaborde
IS-IT--Management
I'm trying to insert data into an Oracle 8 database from ADO.NET 1.1, into a CLOB field.
If I just concatenate a big SQL string and push it in via .CommandText it works, as long as the CLOB data isn't over 4k (or close to that).
So, I've tried various methods to put that data in there, and have had no luck.
I was told that in the "old days" they did this with .AppendChunk which isn't availalbe in .NET anymore. The "new" way is to get the row, and use the data adapter to push it back in. Supposedly easy, but not working for me.
I'm using OleDB, Oracle 8 and .NET 1.1
Can anyone give me some example code that works? I just want to enter text based data over 4k
Thanks,
Travis
If I just concatenate a big SQL string and push it in via .CommandText it works, as long as the CLOB data isn't over 4k (or close to that).
So, I've tried various methods to put that data in there, and have had no luck.
I was told that in the "old days" they did this with .AppendChunk which isn't availalbe in .NET anymore. The "new" way is to get the row, and use the data adapter to push it back in. Supposedly easy, but not working for me.
I'm using OleDB, Oracle 8 and .NET 1.1
Can anyone give me some example code that works? I just want to enter text based data over 4k
Thanks,
Travis