Method setMaxRows(int max)
Return type: void
Member of:
java.sql.Statement
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
stmt.setMaxRows(1);
2
stmt.setMaxRows(1);
3
public void setMaxRows(int max) throws SQLException { _stmt.setMaxRows( max); }
4
public void setMaxRows(int max) throws SQLException { checkOpen(); _stmt.setMaxRows(max);}
5
_cs.setMaxRows(p1);
6
st.setMaxRows(3);
7
statement.setMaxRows ( 1 );
8
sStatement.setMaxRows(0);
9
m_pstmt.setMaxRows(max);
10
delegate_.setMaxRows( max );
11
s.setMaxRows(maxRows);
12
sqlStatement.setMaxRows(stmtMaxRowCount);
13
stmt.setMaxRows(rel.maxSize);
14
ps.setMaxRows(maxResults + skipResults);
15
ps.setMaxRows(DEFAULT_QUERY_MAX_ROWS);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.