equal
deleted
inserted
replaced
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 |