SqlConnection.ClearAllPools 问题
我正在使用 VSTS 2008 + .Net 3.5 + C# + ADO.Net + SQL Server 2008 Enterprise。我正在学习 http://msdn.microsoft .com/en-us/library/system.data.sqlclient.sqlconnection.clearallpools.aspx 关于 SqlConnection.ClearAllPools 方法。我想知道这个方法的行为是,如果调用 ClearAllPools 方法时连接池中的任何连接空闲,这些空闲连接是否会从 SQL Server 断开?这样的理解正确吗?
我从MSDN链接中没有找到相关评论。
I am using VSTS 2008 + .Net 3.5 + C# + ADO.Net + SQL Server 2008 Enterprise. I am learning http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.clearallpools.aspx about SqlConnection.ClearAllPools method. I want to know the behavior of this method is, if any connections from connection pool is idle when method ClearAllPools is called, such idle connections will be disconnected from SQL Server? Is that correct understanding?
I did not find related comments from the MSDN link.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案是肯定的。
但这种方法有用的情况很少见。
The answer is Yes.
But the situations in which this is useful are rare.