} catch (NoSuchMethodError nsme) {
assertTrue("FAIL - ResultSet.updateRef not present - correct for" +
" JSR169", JDBC.vmSupportsJSR169());
}
try {
rs.updateRef("c", null);
fail("FAIL - Shouldn't reach here. Method not implemented" +
" yet.");
} catch (SQLException se) {
assertSQLState(NOT_IMPLEMENTED, se);
} catch (NoSuchMethodError nsme) {