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 are the various ways of session supervision in servlets?

0 Answers  


how the HTML data stored in web server?

0 Answers   TCS,


What are the differences between forward() method and sendredirect() methods?

0 Answers  


Does servlet have main method?

0 Answers  


How can we achieve transport layer security for our web application?

0 Answers  


What happens, when client requests for server object, which is not yet loaded into the memory?

2 Answers  


How can the session in servlet be destroyed?

0 Answers  


What do you mean by session tracking?

0 Answers  


Why setMaxAge() and getMaxAge() methods are used in Cookies?

2 Answers  


How we can check in particular page the session will be alive or not

4 Answers   L&T, Symbiosis,


Why do we have servlet filters?

0 Answers  


Hi Friends, Suppose you have a web appliction which consists of 100 clients are connected with Connection pooling and they are associated with 100 connection objcet and connected with DB sever,Due some problem DB-Server suddenly crashed and server came to down state for a while after few minutes DB-server once again up,Now how will I manage my Pool Management with my 100 clients...can any one tell me??????????????????

3 Answers   ProgressSoft,


Categories