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
Explain the difference between data reader and data adapter?
How to maintain the relation between two tables in ADO.NET?
Explain advantages of ado.net?
Explain sqlconnection object?
Explain the advantage of ADO.Net?
Is ado.net dead?
What is the difference between Optimistic and Pessimistic locking?
Explain the difference in record set and dataset?
What is difference between executenonquery and executequery?
How to creating a SqlCommand Object?
Define executenonquery?
How to identify the updated rows in a dataset?
What are the ado.net connection pooling parameters?
How can we add/remove row's in "datatable" object of "dataset"?
What is acid in ado.net?