Thread: java doubt
View Single Post

  #4 (permalink)  
Old 05-04-2006, 11:39 AM
parindia parindia is offline
Junior Member
 
Join Date: Apr 2006
Posts: 1
parindia is on a distinguished road
Quote:
Originally Posted by dchowdary
Hi ,
i need the information about the Connectionpooling .how the connection pooling is implemented ? what is the advantage ?Can you send me the interview questions in j2ee ?

connection pooling is used to share our connection to database and other resources. if we not used connection pool when we connect to database that time one more users to need to share the same database so that time system will be hanged up or data crashes so we used connection pool. it is given connection tho r all want to access shsred resource more than 1 users after completing our process the connection will be kept store in pool sepetate area and when other users needed that time the connection pool given connection to that user. ( mit is mediator between user and database).
Reply With Quote