CLOB not converting 8 bit extended ASCII characters properly on Linux
843859Jun 13 2007 — edited Jun 13 2007Hi,
I have few 8 bit extended ASCII characters in database. When I retrieve them using CLOB and convert the CLOB to String then the characters are getting corrupted and I don't see what is stored in database.
It is happening on Linux Environment whereas it is working on Windows Environment. Is there any Linux Environment setting which I need to do.
I am using following to convert CLOB to String
CLOB c_lob = (CLOB) obj;
InputStream ipstream = c_lob.binaryStreamValue();
Where obj is of type oracle.sql.CLOB