如何清除 OleDbConnection 的连接池

发布于 2024-11-26 23:08:49 字数 201 浏览 2 评论 0原文

我使用 OleDatabase 连接连接到 Access 数据库。问题是我需要以编程方式对数据库运行压缩和修复操作,但是当仍然存在与数据库的打开连接时我无法执行此操作。存在的连接当然是来自我的程序的连接池的连接,但是我似乎无法弄清楚如何清除池以便我可以运行压缩和修复。

我确实对打开数据库的所有连接都有一个 using 语句,所以问题不是我没有正确处理连接,问题是连接池。

I am connection to an Access Database using a OleDatabase Connection. The problem is that I need to programmatically run the compact and repair operation on the database, however I can not do this while there are still open connections to the database. The connections that exist are of course the connections from the connection pool from my program, however I can not seem to figure out how to clear the pool so that I can run the compact and repair.

I do have a using statement on all connections that get opened to the database so the problem is not that I am not disposing of the connections properly, the problem is the connection pool.

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

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

发布评论

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

评论(1

沫离伤花 2024-12-03 23:08:49

OleDbConnection 上调用静态方法 ReleaseObjectPool - 请参阅 http://msdn.microsoft.com/en-us/library/system.data.oledb.oledbconnection.releaseobjectpool.aspx

Call the static method ReleaseObjectPool on the the OleDbConnection - see http://msdn.microsoft.com/en-us/library/system.data.oledb.oledbconnection.releaseobjectpool.aspx

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