Connection Pooling With ASP.NET 1.1

  • Thread starter Thread starter Robert E. Flaherty
  • Start date Start date
R

Robert E. Flaherty

Does ASP.NET with ADO connecting to MS SQL Server use connection pooling by
default if the connection string is always the same? If not, how does one
go about evoking connection pooling ?
 
Hi Robert,

Yes, the ADO.NET data provider for Sql Server pools connections automatically based on distict connection strings. You can disable
or adjust pooling using attributes in the connection string.
 
¤ Does ASP.NET with ADO connecting to MS SQL Server use connection pooling by
¤ default if the connection string is always the same? If not, how does one
¤ go about evoking connection pooling ?
¤

Yes, but it's per application process or application pool.


Paul
~~~~
Microsoft MVP (Visual Basic)
 
Back
Top