ADO.NET connection Pool question

  • Thread starter Thread starter coollzh
  • Start date Start date
C

coollzh

i have read a article :
"Als o remember that each .NET assembly gets a unique PID. This means that
each new assembly you run gets its own pool¡ªregardless of the similarity of
function or the fact that their ConnectionString values are identical."

URL:
http://www.winnetmag.com/SQLServer/Articles/ArticleID/38356/pg/3/3.html

as above , my web application with many Assemblies will maintain many
differents connection pool? Is it true?
 
That's not correct. In ADO.NET connection pools are per-appdomain, not
per-assembly or per-PID.

--
Pablo Castro
Program Manager - ADO.NET Team
Microsoft Corp.

This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top