I need to store string values (whose sizes range from 30000 to 70000 characters) as a Key value pair in my application.
Instead of storing these in my Java code, I created CLOB fields in the database for storage. I store these values in a HashMap. During storage, when I print the length of the values, strangely all the lengths are less by 13 characters. Even though I confirmed that the values have not got truncated.
When I retrieve these values from the HashMap, I get NULL for the values... Kindly suggest if you have any suggestions.
Thanks,
Raghu
Instead of storing these in my Java code, I created CLOB fields in the database for storage. I store these values in a HashMap. During storage, when I print the length of the values, strangely all the lengths are less by 13 characters. Even though I confirmed that the values have not got truncated.
When I retrieve these values from the HashMap, I get NULL for the values... Kindly suggest if you have any suggestions.
Thanks,
Raghu