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 is the meaning of 3 dots in java?
when asub class inherits a super class and overrides a public method of super class in sub class(public method in super class). why these methods needs to be public in sub class. (otherwise compile time error).
Mention some interfaces implemented by linked list in java.
What are the new features in java 8? Explain
What are the three types of design patterns?
How many types of design patterns are there?
Is an integer an object?
Explain the term virtual machine?
List some oops concepts in java?
What are the differences between stringbuffer and stringbuilder?
What is the difference between a vector & an array list?
what methods would you overwrite in java.lang.object class?