Exemplo n.º 1
0
  public void test_getNClob() throws Exception {
    resultSet.next();

    resultSet.getNClob(1);
    resultSet.getNClob("1");

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

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