If one of the database fields is of CLOB datatype, and this field needs to be retrieved using JSP, then normal functions like getString(?
1 2 3 | CLOB aclob = (CLOB)rset.getObject( "column_name" ); int clob_length = ( int )aclob.length(); String data = aclob.getSubString( 1 , clob_length); |