ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_UPDATABLE);
ResultSet rs = stmt.executeQuery("SELECT * FROM t5");
assertTrue("FAIL - row not found", rs.next());
rs.moveToInsertRow();
// Should insert a row with NULLS and DEFAULT VALUES
rs.insertRow();
rs.close();
String[][] expected =
{{"1", "1"}, {"2", "2"}, {"3", "3"}, {"4", "4"}, {"0", null}};
rs = stmt.executeQuery("SELECT * FROM t5");