Method setFetchSize(int rows)
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 public void setFetchSize(int rows) throws SQLException { _stmt.setFetchSize( rows); }
2 public void setFetchSize(int rows) throws SQLException { checkOpen(); _stmt.setFetchSize(rows);}
3 _cs.setFetchSize(p1);
4 statement.setFetchSize ( 1 );
5 m_pstmt.setFetchSize(rows);
6 _statement.setFetchSize(RemoteIteratorBean.RI_BUFFER_SIZE);
7 delegate_.setFetchSize( rows );
8 stmt.setFetchSize(s_fetchSize);
9 ps.setFetchSize(maxResults + skipResults);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.