Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

wa is connection pooling? how do u create connection
pooling?wat is use connection pooling?

Answer Posted / rikin patel

What is connection pooling?
=>
With servlets, opening a database connection is a major
bottleneck because we are creating and tearing down a new
connection for every page request and the time taken to
create connection will be more. Creating a connection pool
is an ideal approach for a complicated servlet. With a
connection pool, we can duplicate only the resources we
need to duplicate rather than the entire servlet. A
connection pool can also intelligently manage the size of
the pool and make sure each connection remains valid. A
number of connection pool packages are currently available.
Some like DbConnectionBroker are freely available from Java
Exchange Works by creating an object that dispenses
connections and connection Ids on request. The
ConnectionPool class maintains a Hastable, using Connection
objects as keys and Boolean values as stored values. The
Boolean value indicates whether a connection is in use or
not. A program calls getConnection() method of the
ConnectionPool for getting Connection object it can use; it
calls returnConnection() to give the connection back to the
pool.

Is This Answer Correct ?    5 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are collection pools?

1022


What are the standard isolation levels defined by JDBC?

1219


What is the significance of DataBaseMetaData.tableIndexStatistics? How to obtain and use it?

1038


What is a datasource in java?

1010


Where is jdbc used?

1039


How do I insert/update records with some of the columns having NULL value?

989


What does the jdbc resultsetmetadata interface?

996


Discuss the procedure of retrieving warnings?

1032


Explain the two tier and three tier architecture of jdbc.

963


Why can't Tomcat find my Oracle JDBC drivers in classes111.zip?

1023


Does the JDBC-ODBC Bridge work with Microsoft J++?

2363


What is an odbc driver?

968


Describe the steps needed to execute a sql query using jdbc.

1032


How to use JDBC API to call Stored Procedures?

1060


What are the exceptions in jdbc?

1001