rs = stmt.executeQuery("SELECT ID, DATA FROM T_CLOB");
rs.getStatement(); // just call
while (rs.next()) {
Clob readClob = rs.getClob(2);
readClob.length();
readClob.position("abc", 1);
readClob.getCharacterStream().close();
readClob.getAsciiStream().close();
readClob.getCharacterStream(1, 1).close();
readClob.getSubString(1, 2);
readClob.truncate(2);