Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Explain in detail the fundamental of connection pooling
Explain in detail the fundamental of connection pooling?
✍: Guest
When a connection is opened first time a connection pool is created and is based on the
exact match of the connection string given to create the connection object. Connection
pooling only works if the connection string is the same. If the connection string is different,
then a new connection will be opened, and connection pooling won't be used.
Lets try to explain the same pictorially. In the above figure you can see there are three
requests “Request1”, “Request2” and “Request3”. “Request1” and “Request3” have
same connection string so no new connection object is created for “Request3” as the
connection string is same. They share the same object “ConObject1”. But new object
“ConObject2” is created for “Request2” as the connection string is different.
Note: - The difference between the connection string is that one has “User id=sa” and other
has “User id=Testing”.
2007-10-24, 5730👍, 0💬
Popular Posts:
What is triple constraint triangle in project management ? Project Management triangle is depicted a...
Write an equivalent expression for x%8? x&7
What is a measure in OLAP ? Measures are the key performance indicator that you want to evaluate. To...
What CLASSPATH Settings Are Needed to Run JUnit? It doesn't matter if you run your JUnit tests from ...
How Oracle Handles Dead Locks? - Oracle DBA FAQ - Understanding SQL Transaction Management Oracle se...