jdk/src/share/classes/java/sql/ResultSet.java
changeset 18156 edb590d448c5
parent 15278 e081d3f73b75
child 18564 f9db68ff2cbb
equal deleted inserted replaced
18155:889970e5b728 18156:edb590d448c5
  1348      * that created the result set.  The fetch size may be changed at any time.
  1348      * that created the result set.  The fetch size may be changed at any time.
  1349      *
  1349      *
  1350      * @param rows the number of rows to fetch
  1350      * @param rows the number of rows to fetch
  1351      * @exception SQLException if a database access error occurs; this method
  1351      * @exception SQLException if a database access error occurs; this method
  1352      * is called on a closed result set or the
  1352      * is called on a closed result set or the
  1353      * condition <code>rows >= 0 </code> is not satisfied
  1353      * condition {@code rows >= 0} is not satisfied
  1354      * @since 1.2
  1354      * @since 1.2
  1355      * @see #getFetchSize
  1355      * @see #getFetchSize
  1356      */
  1356      */
  1357     void setFetchSize(int rows) throws SQLException;
  1357     void setFetchSize(int rows) throws SQLException;
  1358 
  1358