Is the connectionManagement configuration used for SqlConnections?

In a .NET 4 application, does the default restriction for two connections to the host (through <system.net><connectionManagement>) apply to the pool SqlConnection?

+3
source share
1 answer

No, because it SqlConnectioncreates connections using the Win32 API, not System.Net.

0
source

All Articles