Searched refs:getMaxRows (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/java/sql/
H A DStatement.java165 int getMaxRows() throws SQLException; method in interface:Statement
178 * @see #getMaxRows
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetReader.java174 pstmt.setMaxRows(crs.getMaxRows());
208 pstmt.setMaxRows(crs.getMaxRows());
H A DCachedRowSetWriter.java508 pstmt.setMaxRows(crs.getMaxRows());
951 pstmt.setMaxRows(crs.getMaxRows());
H A DWebRowSetXmlWriter.java223 propInteger("max-rows", caller.getMaxRows());
/openjdk7/jdk/src/share/classes/javax/sql/
H A DRowSet.java347 int getMaxRows() throws SQLException; method in interface:RowSet
356 * @see #getMaxRows
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DBaseRowSet.java1191 public int getMaxRows() throws SQLException { method in class:BaseRowSet
1428 * by a call to the method {@link #getMaxRows})
1437 if (getMaxRows() == 0 && rows >= 0) {
1441 if ((rows < 0) || (rows > getMaxRows())) {
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DCachedRowSetImpl.java644 mRows = this.getMaxRows();
7254 if(getMaxRows() == 0){
7265 if((endPos - startPos) >= getMaxRows() && (getMaxRows() > 0)){
7271 if((maxRowsreached != getMaxRows() || maxRowsreached != totalRows) && pagenotend) {
7277 endPos = start + getMaxRows() ;
7292 rvh = new Vector<Object>(getMaxRows());
7313 mRows = this.getMaxRows();
7421 if (size > getMaxRows() && getMaxRows() !
[all...]
H A DJdbcRowSetImpl.java608 ps.setMaxRows(getMaxRows());
2085 * condition <code>0 <= rows <= this.getMaxRows()</code> is not
4624 oldVal = getMaxRows();

Completed in 120 milliseconds