Connection Pooling With ASP.NET 1.1

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 ?
 
D

Dave Sexton

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.
 
P

Paul Clement

¤ 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)
 

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

Top