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

    resultSet.getCharacterStream(1);
    resultSet.getCharacterStream("1");

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

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