connection pooling

Z

zhuang

Hi,

http://msdn.microsoft.com/library/d...nectionPoolingForSQLServerNETDataProvider.asp

It mentioned that connection pool is bound to connection string. But I
wonder what will happen if below setting is used:

1. sql connection string is
Integrated Security=SSPI;Initial Catalog=northwind

2. In web.config, authentication mode="Windows", impersonate=true, no
username and password specifed.

If two different users access the web application, then even though sql
connection string appears to be the same, but sql server will give two
users access right based on different windows account, in this case,
will there be 1 connection pool or 2 connection pools?

I guess there will be 2 connection pools since different user
credentials are passed to create connection.

Do you have any ideas?

Thanks
 

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