} catch (SQLException e) {
checkException(BLOB_POSITION_TOO_LARGE, e);
}
// 0 or negative position value
try {
clob.position("xx",-4000);
fail("FAIL - position with negative as position should " +
"have caused an exception");
} catch (SQLException e) {
checkException(BLOB_BAD_POSITION, e);
}