What is Connection pooling?

What is Connection pooling?

- A connection pooling is a technique of reusing active database connections instead of creating a new connection with every request.
- It involves little or no code modification but can often provide significant benefits in terms of application performance, concurrency and scalability.
- Improvements such as these can become especially important when your application is tasked with servicing many concurrent users within the requirements of sub second response time.
- By adhering to a small number of relatively simple connection pooling best practices your application can quickly and easily take effective advantage of connection pooling.
What are the common tasks of JDBC?
What are the common tasks of JDBC? - Create an instance of a JDBC driver ....
Concepts of Exceptions in Java
Explain the concepts of Exceptions in Java - Exceptions are errors that occur at runtime and disrupt the normal flow of execution of instructions in a program...
What is class loader? Purpose of Bootstrap class loader.
What is class loader? Purpose of Bootstrap class loader - Class loader finds and loads the class at runtime. Java class loader can load classes from across network...
Post your comment