What is Maximum Pool Size in ADO.NET Connection String?

chinmay.sahoo

New member
Maximum pool size decides the maximum number of connection objects to be pooled. If the maximum pool size is reached and there is no usable connection available the request is queued until connections are released back in to pool. So it’s always a good habit to either call the close or dispose method of the connection as soon as you have finished work with the connection object.
 
Back
Top