What is Connection Pooling?



What is Connection Pooling?..

Answer / suraj kumar

Connection pooling is conceptually similar to any other form
of object pooling. Database connections are often expensive to
create because of the overhead of establishing a network
connection and initializing a database connection session. In
turn, connection session initialization often requires time
consuming processing to perform user authentication, establish
transactional contexts and establish other aspects of the
session that are required for subsequent database usage.
Hence, sharing of connection object helps to both alleviate
connection management overhead and decrease development tasks
for data access. The sharing and storing mechanism of
connection object is known as connection pooling.

Is This Answer Correct ?    16 Yes 1 No

Post New Answer

More Advanced Java Interview Questions

What is the difference between java class and bean?

0 Answers  


What is the difference between Process and Threads?

19 Answers  


what is a dirty read?

1 Answers  


types of exceptions

1 Answers  


Can you control when passivation occurs?

0 Answers  






What are the advanatages of RMI ?

1 Answers   HGS,


What modifiers may be used with an interface declaration?

0 Answers  


Which container method is used to cause a container to be laid out and redisplayed?

0 Answers  


Why do threads block on i/o?

0 Answers  


What is a class loader?

0 Answers  


Can I map more than one table in a cmp?

0 Answers  


Can constructors be synchronized in java?

0 Answers  


Categories