Connection pooling...

wsyeager

Well-known member
Joined
Apr 10, 2003
Messages
140
Location
Weston, FL
Im using connection pooling (0 min/100 max) in an asp.net web application. All users log in using the same connectionstring.

Is it prudent, for instance, to close and dispose of my connection after a database update takes place which I normally do when Im not using connection pooling?
 
Close yes, Dispose no, You should be using the same connection object for all connections. You know pooling happens internally in sql server right?
 
Back
Top