public void test_updateRowId() throws Exception {
    resultSet.next();

    resultSet.updateRowId(1, null);
    resultSet.updateRowId("1", null);

    {
      SQLException error = null;
      try {
        resultSet.updateRowId(0, null);
      } catch (SQLException ex) {
        error = ex;
      }
      Assert.assertNotNull(error);
    }

    {
      SQLException error = null;
      try {
        resultSet.updateRowId("0", null);
      } catch (SQLException ex) {
        error = ex;
      }
      Assert.assertNotNull(error);
    }
  }