wa is connection pooling? how do u create connection
pooling?wat is use connection pooling?
Answer / 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 |
What is jdbc and why is it required?
What are the types of jdbc drivers that exist?
What does the jdbc resultsetmetadata interface?
What are the considerations for deciding on transaction boundaries?
how do we get the connection from connection pool
What is com mysql jdbc driver?
Is jdbc faster than odbc?
What are temp tables ?
Explain the process of creating tables using NetBeans IDE?
What is a jdbc connection?
If you are truncated using JDBC, how can you that how much data is truncated?
What is the use of prepared statement?Ans:used to execute pre compiled statement...so the question is when that precompiled statement will be execute or comiple?................