I am using JSP to access Oracle 10g. One of the table includes a field with clob data type.
When it is retrieved with getString API and be assigned to String type, it gives an error (java.sql.SQLException: Conversion to String failed)
I found that it only happens if the Statement is prepared with parameter ResultSet.CONCUR_UPDATABLE (not FORWARE ONLY)
Is there any workaround as I need to use those API of ResultSet to play around the ResultSet later.
Thanks.