| Author |
Resultset.getFetchSize()
|
trupti nigam
Ranch Hand
Joined: Jun 21, 2001
Posts: 602
|
|
Hello all, In the java API documentation the description for the above method is: public int getFetchSize() throws SQLException Retrieves the fetch size for this ResultSet object. What is a fetch size? is it the numbe rof return row counts?? or the numbe r of column row count from which the data is fetched? I think the second ans is right. wanted to confirm. Thanks, Trupti
|
 |
Jim Cheng
Greenhorn
Joined: Dec 08, 2004
Posts: 11
|
|
None of them Fetch size is the number of rows that should be fetched from the database when more rows are needed. If a fetch size has not been set by calling the method setFetchSize, the return value is implementation-specific. Jim
|
 |
 |
|
|
subject: Resultset.getFetchSize()
|
|
|