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 |
Give me simple example of hibernate caching and explain the details of caching????? thanks in adv.
How will the struts know which action class to call when you submit a form?
How has the sandbox changed with Java 2?
What is the purpose of the wait(), notify(), and notifyall() methods?
What is the map interface?
How would you create a button with rounded edges?
Why is string immutable in java?
how can we load a file of a user in the database table?
life cycle of an applet?
Describe, in general, how java's garbage collector works?
Can we have more than one action servlet?
What are different types of layout managers in java.awt package?