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