Java / JDBC
What is row prefetching in JDBC?
To minimize the round trips to the database, pre fetching gets multiple rows of data each time data is fetched and the extra row data is stored in client-side buffers for later access by the client. The number of rows to prefetch can be set using setRowPrefetch method.
More Related questions...