User1310405000 posted
Thank you, this article shed some light on my question.
I am wondering what the article described.
Does it means IIS is automatically handling connection pooling regarding the connection string?
If so, then I have some questions to ask.
1. What is there are two requests come to my server querying data from the database with different connection pool setting? What will happen to my pool?
2. Does it means new SqlConnection(connectionString); is acquiring connection from the pool and connection.Close(); means returning it?
3. What connections are in one pool? will different authentication end up in same pool? different login to the same database end up in same pool?