i connect to oracle with UniDAC,get the data from a clob field,but procedue the error message:
ORA-06505:PL/SQL: Variable requires more than 32767 bytes of contigous memory.
code example:
UniQuery.close;
UniQuery.sql.text:='select clobfieldname from tablename';
UniQuery.Open;
UniQuery.getclob('clobfieldname').savetofile(filename);
UniQuery.close;