My set up is as follows
- IIS + SQL Server Express running on the same machine.
- SQL Server Express has named pipe connections.
- IIS hosts an ASP.Net website (v3.5)
- ASP.Net site has web config entry to database using integrated security.
In regard to this, how are the connections between the ASP.Net app. and SQL Server express handled?
Does each user connect using the same login to SQL Express (think its NETWORK-SERVICE)?
If 2 people hit the same web page at the same time how many connections are opened to SQL Express?
Is it up to the setting in connection pooling? E.g. if connection pooling is set to 10 then in this example 2 connections are opened?
Or is it that only one connection is used and users must wait for the previous user's webpage to finish all database operations before their request can be processed.
Thanks.