What is database connection pooling? Advantages of using a connection pool?
Answer / Rahul Jain
Database connection pooling is a technique for reusing preallocated database connections instead of establishing a new connection each time one is needed. This reduces the overhead involved in creating and closing database connections, thereby improving performance. Advantages of using a connection pool include faster response times, reduced memory usage, and more efficient use of network resources.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is jdbc url for mysql?
Name the types of jdbc drivers.
What happens if connection is not closed in jdbc?
Explain what should be done when a SQL exception is raised?
What type of driver you use in real-time projects?
Why would you use setautocommit(false) in jdbc?
Where is mysql jdbc driver located?
What is de-normalization?
How many categories of jdbc drivers are there?
What is JDBC RowSet? What are different types of RowSet?
What is the full form of jdbc and what is its purpose?
What is 2-tier and 3-tier architecture?