vote up 0 vote down star
1

Hello everyone,

I am using .Net 2.0 + SQL Server 2005 Enterprise + VSTS 2008 + C# + ADO.Net to maintain a legacy ASP.Net Web application. Here is the connection string the legacy application is using (the legacy application is using SQL Server authentication mode),

My question is, I think the connection string is wrong, 1. since the setting of pooling is false, but it also set pool size -- conflicting. 2. Even if there are conflicting settings, I think pooling = false takes effect, i.e. connection pool is not used by the ADO.Net application. My understanding correct?

"server=***;database=***;uid=***;pwd=***;pooling=false;max pool size=100"

thanks in advance, George

flag

41% accept rate

1 Answer

vote up 2 vote down check

Yes. You are right. if pooling = false, the max pool size will not take effect. but the connection is not necessarily wrong. it is still valid.

link|flag
1  
yup exactly - pooling=false --> turns off pooling, all other pooling-related settings will be ignored – marc_s Oct 29 at 17:15
Thanks! Question answered! – George2 Oct 29 at 17:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.