What is Connection Pooling?
Answer / suraj kumar
Connection pooling is conceptually similar to any other form
of object pooling. Database connections are often expensive to
create because of the overhead of establishing a network
connection and initializing a database connection session. In
turn, connection session initialization often requires time
consuming processing to perform user authentication, establish
transactional contexts and establish other aspects of the
session that are required for subsequent database usage.
Hence, sharing of connection object helps to both alleviate
connection management overhead and decrease development tasks
for data access. The sharing and storing mechanism of
connection object is known as connection pooling.
| Is This Answer Correct ? | 16 Yes | 1 No |
What is the difference between the string and stringbuffer classes?
How to deploy Jar, War files in J2EE?
What is re-entrant. Is session beans reentrant. Is entity beans reentrant?
Which textcomponent method is used to set a textcomponent to the read-only state?
can a static method be overridden
How can a dead thread be restarted?
difference between applicationserver and webserver
Suppose there are 3 combo box. SELECT COUNTRY SELECT STATE SELECT CITY if i select any country from country conutrylistbox values in the state will get automatically inserted with database values>> THEN on selection of state city will be inserted in city combo box If you can help then please Help me...
What is aop(assepct oriented programing)?
what do u mean by java bean??
How will you pass parameters in RMI? Why do you serialize?
In RMI, inorder to sent the stub reference to the client, is we have to load the server object first into the memory or can we directly sent reference to the client?