- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
即使在我对初始化的 OleDbException 调用 dispose 之后,我的代码也不会释放文件句柄。有没有办法显式强制程序释放文件句柄?
最佳答案
默认情况下,.NET 数据库连接使用 pooling 。调用 Close()
和 Dispose()
只是将连接释放回池中,实际上并不会强制它关闭。最终它会从池中超时,并且实际上被关闭。
经过一番研究,似乎有两种主要方法可以使其按预期接近:
OLE DB Services = -2;
,它应该为您提供除池化之外的所有服务OleDBConnection.ReleaseObjectPool()
对于后一种方法,您可能需要使用超时 - 摘自链接的 MSDN 文章:
Note that calling the method alone does not actually release the active connections that exist in the pool.
The following must occur before the pool is finally disposed:
- Call Close to return the connection object to the pool.
- Allow each connection object to time out of the pool.
- Call ReleaseObjectPool.
- Invoke garbage collection.
我在工作中有一个这样的用例,其中一些内部软件需要与旧的、不灵活的、脆弱的和绝对关键专有软件进行交互。它需要在尽可能短的时间内打开共享 MDB 数据库文件,以最大限度地减少其他软件可能“出现问题”的窗口(这是一件非常糟糕的事情)。
我计划使用连接字符串方法,因为它看起来更容易保证关闭,而且我的软件并没有真正从池中受益。
关于.net - 强制 OleDbConnection 释放文件句柄,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2862232/
我设置了 Helm 柄和 Helm 柄。我有tiller-deploy。昨天,我可以定期运行了。但今天我收到此错误消息 Error: could not find a ready tiller pod
我以前已将分er安装到特定的 namespace 中。 我设置了一个环境变量来设置'tiller'命名空间-但我不记得该环境变量的名称-而且似乎无法通过网络搜索找到它。 这是什么 key ? 最佳答案
当我在 View 模型中使用如下界面时 class MainViewModel @ViewModelInject constructor( private val trafficImagesR
我正在尝试找到如何在某个 fragment 相关场景中定义 Hilt 的解决方案。我有以下设置: Activity 父 fragment 1 子 fragment 1 子 fragment 2 ...
Hilt 指出如果没有@Provides 注解就不能提供这个接口(interface): interface PlannedListRepository { fun getAllLists()
我的问题非常简单明了:两个注释/示例之间有什么区别: 例子一 @Singleton class MySingletonClass() {} @Module @InstallIn(FragmentCom
我是一名优秀的程序员,十分优秀!