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

    resultSet.updateAsciiStream(1, (InputStream) null);
    resultSet.updateAsciiStream("1", (InputStream) null);

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

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