Handle CLOB> 32k
Posted: Thu 13 Apr 2006 11:21
Hello,
everytime we want to save CLOB Fields grater then 32k an error occurs.
After this we get
We use OraQuery in Delphi. The operation is like this:
ss is an StringStream and can be greater 32k!
The error occurs at qry.Post
Thanks for any Help[/quote]
everytime we want to save CLOB Fields grater then 32k an error occurs.
After this we get
on every CLOB Operation.
ORA-06505: PL/SQL: variable requires more than 32767 bytes of contiguous memory
We use OraQuery in Delphi. The operation is like this:
Code: Select all
ftOraBlob: (tab.FieldByName(FieldName) as TBlobField).LoadFromStream(ss);
ftOraClob: (tab.FieldByName(FieldName) as TMemoField).LoadFromStream(ss);
The error occurs at qry.Post
Thanks for any Help[/quote]