SqlConnection.ClearAllPools,清除了什么?

发布于 2024-09-24 20:43:43 字数 248 浏览 2 评论 0原文

我有一个应用程序,它使用 SqlConnection.ClearAllPools 在删除数据库之前关闭所有连接。

存在连接仍然存在的情况。此连接是在另一个应用程序域中创建的。

所以我想知道 SqlConnection.ClearAllPools 关闭了哪些连接?

  • 仅由调用进程(或AppDomain)打开的连接?
  • 本机打开的所有连接?
  • ...?

I have an application which uses SqlConnection.ClearAllPools to close all connections before dropping a database.

There is a case where a connection is still there. This connection had been created in another application domain.

So I wonder which connections are closed by SqlConnection.ClearAllPools?

  • Only the connections opened by the calling process (or AppDomain)?
  • All the connections opened by this machine?
  • ...?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

变身佩奇 2024-10-01 20:43:43

它仅关闭调用进程打开的所有连接。它清空绑定到该进程的所有连接池。 引用

连接池和连接字符串齐头并进。每个连接池都与一个不同的连接字符串相关联,并且它也是特定于应用程序的。反过来,它的含义是——为每个不同的进程、应用程序域和连接字符串维护一个单独的连接池。

It closes all the connections opened by the calling process only. It empties all the connection pools which are bound to the process. Quote:

Connection pool and connection string go hand in hand. Every connection pool is associated with a distinct connection string and that too, it is specific to the application. In turn, what it means is – a separate connection pool is maintained for every distinct process, app domain and connection string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文