Explain in detail the fundamental of connection pooling

Q

Explain in detail the fundamental of connection pooling?

✍: Guest

A

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, 6273👍, 0💬