what is meant by connection pooling and event pumbling in
ado.net
Answer Posted / gyany
Connection Pooling:-
Connection pooling reduces the number of times that new
connections need to be opened. The pooler maintains
ownership of the physical connection. It manages
connections by keeping alive a set of active connections
for each given connection configuration. Whenever a user
calls Open on a connection, the pooler looks to see if
there is an available connection in the pool. If a pooled
connection is available, it returns it to the caller
instead of opening a new connection. When the application
calls Close on the connection, the pooler returns it to the
pooled set of active connections instead of actually
closing it. Once the connection is returned to the pool, it
is ready to be reused on the next Open call.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
How can we check that some changes have been made to dataset since it was loaded?
What is sql command in ado net?
Explain how to pass multiple tables in datasets simultaneously?
What is the meaning of object pooling?
What is a data control clerk?
What is ado.net code?
What is the hierarchy of data in databases?
What is a datareader object?
How to check if a datareader is closed or opened? IsClosed()
What are the drawbacks of using ado.net?
Describe briefly an ADO.NET Dataset ?
What is the use of connection object in ado.net?
Explain the difference between data reader and data set?
Why is it important to close an ado.net application?
What is ado rdo dao in visual basic?