How does ADO.NET pooling works ?

  • Thread starter Thread starter arno
  • Start date Start date
A

arno

Hello,

I need to develop a pooling system for web services.
It should share a memory where live my poolable objects.

How does ADO.NET pooling works ? Where does it share the
pool ?

Thanks,
arno
 
http://www.sys-con.com/dotnet/article.cfm?id=483
ado.net pools connection per process, per app domain, per connection string
and if applicable per windows identity.
What this means is that only connections that are in the same process, in
the same appdomain, that have the same connection string (and if applicable
windows identity) are pooled together.

--
Angel Saenz-Badillos [MS] Managed Providers
This posting is provided "AS IS", with no warranties, and confers no
rights.Please do not send email directly to this alias.
This alias is for newsgroup purposes only.
I am now blogging about ADO.NET: http://weblogs.asp.net/angelsb/
 
Back
Top