Define Connection Pooling »
By Ramakrishna on Oct 27, 2008 in Connection Pooling, Jdbc executeUpdate | 0 Comments
Q) What Is Connection Pooling?
A) Connection pooling is a technique of creating and managing a pool of connections that are ready for use by any thread that needs them.
This technique of “pooling” connections is based on the fact that most applications only need a thread to have access to a JDBC connection when they [...]
