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 |
can java object be locked down for exclusive use by a given thread? Or what happens when a thread cannot acquire a lock on an object? : Java thread
What is volatile data type?
Does importing a package imports its sub-packages as well in java?
What is anagram number?
Where is stringbuffer stored?
what is the difference between String and StringBuffer classes?
what is difference between type 4 driver and type 1 driver?
2 Answers CMC, CTS, IBM, JK Technosoft, Napier Healthcare,
Explain Event handling in AWT?
Does list maintain insertion order java?
What is the need to implement Serializable interface (with no methods) for objects which are to be serialized ? We can write our own functionality which writes objects to streams then why we need to implement and tell JVM that which objects can be serialized.
How to transfer data from an Applet to Servlet ?
What are the differences between abstract class and interface?