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 is represented by the connection object?

751


What is the JDBC syntax for using a literal or variable in a standard Statement?

756


Why do I have to reaccess the database for Array, Blob, and Clob data?

749


How do I retrieve a whole row of data at once, instead of calling an individual ResultSet.getXXX method for each column?

801


What are the different types of drivers under jdbc?

633


What is phantom read and which isolation level prevents it?

722


Is jdbc part of j2ee?

741


Which is better odbc or jdbc?

661


What protocol does jdbc use?

714


What is a jdbc connection?

643


What is jdbc stand for?

688


What is DML?

744


What is jdbc and jdbc drivers?

672


Why “no suitable driver” error occurs?

804


What does it mean to "materialize" data?

728