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.
Loading...
Related Quiz
- How does the servlet container use the order of filter mappings in web.xml?
- How do filters interact with different types of servlets and JSP pages?
- What is the role of the AsyncListener in the servlet's asynchronous mode?
- To avoid thread safety issues, it's recommended to use __________ instead of instance variables in servlets.
- Describe a scenario where file download in a servlet might fail and how to address it.