对 DLL 卸载/关闭执行操作

发布于 2024-11-27 17:19:22 字数 222 浏览 1 评论 0原文

我正在为我的 .Net 项目编写一个 DLL,它将处理一些数据库交互。我现在已经进行了设置,以不断重复使用与数据库(UniData 数据库)的相同连接,以控制我的许可。 DLL 有一个变量来保存会话,如果会话为空或关闭,则将打开它。

我希望程序关闭后自动关闭连接。我已经将 DLL 作为模块实现了。我不确定如何使模块在程序关闭时执行 CloseSession 操作。我知道会话最终会超时,但我正在努力避免这种情况。

I'm writing a DLL for my .Net project that will handle some database interaction. I have things set up right now to continually reuse the same connection to the database (a UniData database) to keep my licensing under control. The DLL has a variable that holds the session and will open it if it is empty or close.

I would like to have the connection close automatically once the program closes. I've implemented my DLL as a module. I'm not sure how I would cause the module to perform the CloseSession operation when the program is closing. I know eventually sessions will timeout, but I'm trying to avoid that scenario.

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

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

发布评论

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

评论(1

心舞飞扬 2024-12-04 17:19:22

Handle the AppDomain.ProcessExit event and beware of the behavior with multiple AppDomains.

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