我知道之前在 SO 上也有类似的问题,如此处所示但是 ,这个答案确实没有解决我的问题。这是我的场景,我将使用 PowerShell 对其进行演示。
以下代码将在我的本地 sql2016 实例上创建两个会话
#The only difference in the two connection strings is [pooling] property, the $connstr_1 has pooling=true, while the $connstr_2 has pooling=false.
$connstr_1 = "data source=localhost\sql2016; initial catalog=master; trusted_connection=true; app=ConnPoolTest; pooling=true";
$SqlConnection1 = New-Object System.Data.SqlClient.SqlConnection($connstr_1)
$connstr_2 = "data source=localhost\sql2016; initial catalog=master; trusted_connection=true; app=ConnPoolTest; pooling=false";
$SqlConnection2 = New-Object System.Data.SqlClient.SqlConnection($connstr_2)
$SqlConnection1.Open()
$SqlConnection2.Open();
我的问题是在 sql server 端,我怎么知道哪个会话的连接字符串的池属性设置为true
,哪个设置为false
?