What is connection pooling?

Answers were Sorted based on User's Feedback



What is connection pooling?..

Answer / sateesh.b

Its the technique use to estblish connection with the
database.In this technique a pool of connection objects are
created and are placed in a pool.When ever the application
need the connection it takes the connection object uses it
and afer completing the task it returns the object to the
pool.

Is This Answer Correct ?    11 Yes 0 No

What is connection pooling?..

Answer / venkat soma

creating the Connection objects in advance and place them
in a pool for future use. We can call this concept as
Connection Pooling

Is This Answer Correct ?    6 Yes 0 No

What is connection pooling?..

Answer / mdsha_asiya

It is a technique to pool database connections.Sothat
business object that can share the database access.

It is used multiple instance based on client connections.

Is This Answer Correct ?    0 Yes 0 No

What is connection pooling?..

Answer / arulmani

--->Connection pooling technique is provided by the
Applicatio server.you need to provide the infromation about
the database to the application server.
--->When you start the server some n number of connection
object will be created in the pool automatically.If you
want to use the connection you need to access from the pool
& after using the connection the object will be return back
to the pool.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Servlets Interview Questions

What is servlet initializer?

0 Answers  


How do you define a servlet?

0 Answers  


What is the requirement of servlet config and servlet context implemented and how are they implemented?

0 Answers  


Hi Friends, Can we make any method thread safe withour synchronized keyword?

2 Answers  


What is the use of welcome-file-list?

0 Answers  






Given the request path below, which are context path, servlet path and path info? /bookstore/education/index.html

1 Answers  


What do you mean by servlet?

0 Answers  


Explain the features are in servlet 3?

0 Answers  


What is the difference between Get and Post Method?

12 Answers   T3 Softwares,


What are the Internal servlets maintained by the web server?

1 Answers   Infosys,


How can I send user authentication information while making URL Connection?

0 Answers  


What do you mean by session tracking and also explain its techniques?

0 Answers  


Categories