Lines Matching refs:rows

268 *   <LI>Does not show rows that have been deleted.
271 * <LI>Has no limit for the number of rows it may contain.
286 * of rows for the <code>CachedRowSet</code> object <i>crs</i> to 500.
412 * A <code>boolean</code> indicating whether deleted rows are visible in this
429 * The maximum number of rows the reader should read.
494 * A hint to the driver that indicates the expected number of rows
630 * one of its rows has changed.
1183 * Retrieves the maximum number of rows that this <code>RowSet</code> object may contain. If
1184 * this limit is exceeded, the excess rows are silently dropped.
1187 * rows; zero means that there is no limit
1189 * maximum limit of rows that a <code>Rowset</code> object can contain
1196 * Sets the maximum number of rows that this <code>RowSet</code> object may contain to
1197 * the given number. If this limit is exceeded, the excess rows are
1201 * of rows; zero means that there is no limit
1203 * maximum limit on the number of rows that a JDBC <code>RowSet</code> object
1271 * Retrieves a <code>boolean</code> indicating whether rows marked
1272 * for deletion appear in the set of current rows.
1275 * Note: Allowing deleted rows to remain visible complicates the behavior
1280 * @return <code>true</code> if deleted rows are visible;
1282 * @throws SQLException if an error occurs determining if deleted rows
1293 * rows marked for deletion appear in the set of current rows.
1295 * @param value <code>true</code> if deleted rows should be shown;
1298 * rows are visible or not
1321 * which the rows in this <code>RowSet</code> object will be
1370 * current fetch direction for fetching rows
1393 * rows. The fetch size gives a JDBC technology-enabled driver ("JDBC driver")
1395 * number of rows that should be fetched from the database when more rows
1418 * retrieve a number of rows that do not exceed the fetch size and that may
1419 * form a subset of the actual rows returned by the original query. This is
1424 * @param rows the number of rows to fetch; <code>0</code> to let the
1426 * than <code>0</code> or more than the maximum number of rows
1430 * or more than the limit for the maximum number of rows
1433 public void setFetchSize(int rows) throws SQLException {
1435 //maxRows = 0 means rowset can hold any number of rows, os this checking
1437 if (getMaxRows() == 0 && rows >= 0) {
1438 fetchSize = rows;
1441 if ((rows < 0) || (rows > getMaxRows())) {
1443 "value: " + rows);
1445 fetchSize = rows;
1452 * @return the number of rows suggested as the fetch size when this <code>RowSet</code> object
1453 * needs more rows from the database
1454 * @throws SQLException if an error occurs determining the number of rows in the