We use Java and Oracle for development.
I have a table in an oracle database that has a CLOB column in it. Some XYZ applications download a text file in this column. The text file has several lines.
Is it possible that when reading the same CLOB file through a Java application, escape sequences (new string characters, etc.) may get lost?
The reason I asked this is that we analyze this file line by line, and if the escape sequences are lost, then we will be a problem. I would do this analysis myself, but I'm on vacation, and my team needs urgent help.
It would be very helpful if you could provide any thoughts / materials.
source
share