In JDBC, what does Statement.setFetchSize(int rows) method influence?

  • Database table indexing
  • Number of rows fetched at a time
  • Query execution timeout
  • Transaction isolation level
The setFetchSize(int rows) method in JDBC influences the number of rows fetched at a time from the result set, which can impact the performance and memory usage of the application.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *