Definition for connection pooling?
Answers were Sorted based on User's Feedback
Answer / sadananda nayak
Connection pooling is a mechanism, it contains multiple database connections and store in a cache for use and reuse.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / rp
Connection pooling is a technique to allow multiple clients
to share a cached
set of connection objects that provide access to a database
resource.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anil
DataSource provided connections are called as connection pooling. Its connections are re-usability. It create the connections and keep it in cache memory.
| Is This Answer Correct ? | 5 Yes | 5 No |
What will happens if you opened Internet Explorer 4 times?
C and C++ has constructors and distructors, why does Java does not have distructors?
What do negative exponents mean?
Can there be an abstract class with no abstract methods in it?
java program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.
What is called module?
what is the difference between object and class
what modifiers are used with top-level class?
where u use Abstraction and Interface in real time
Which is better singleton or static class?
What is Ideal Design of Class?
Can an anonymous class be declared as implementing an interface and extending a class in java programming?