_________ in JDBC helps in reusing the same connection for multiple database operations.
- CallableStatement
- Connection Pooling
- PreparedStatement
- ResultSet
Connection Pooling in JDBC helps in reusing the same connection for multiple database operations, enhancing efficiency and reducing the overhead of opening and closing connections repeatedly.
Loading...
Related Quiz
- Filters can be applied to __________ or __________ resources in a web application.
- The _________ listener is invoked when an attribute is added, removed, or replaced in a session.
- How does a servlet typically report an error back to the client?
- How can a filter access initialization parameters set in the web.xml file?
- Thread safety in servlets can be enhanced by using _________ scoped variables instead of instance variables.