我什么时候应该关闭DatabaseHelper?

发布于 2024-12-04 15:16:50 字数 186 浏览 1 评论 0原文

参考链接,什么时候是关闭连接的好时机,如果你只有一个连接?我有一项服务始终在后台运行。什么时候调用 close() 函数比较合适?有什么建议吗?

With reference to this link, when is a good time to close the connection if you only have one connection? I have a service running in the background at all times. When is a good time to call the close() function? Any suggestions?

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

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

发布评论

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

评论(1

︶ ̄淡然 2024-12-11 15:16:50

您实际上不必调用 close()。例如,如果您实现内容提供程序,则没有机会调用 close()。我们被告知,由于 SQLite 的实现方式,不调用 close() 不会导致任何特定问题。

话虽如此,您确实应该重新考虑让“服务也始终在后台运行”。

You do not actually have to call close(). For example, if you implement a content provider, there is no opportunity to call close(). We have been told that, due to the way SQLite is implemented, not calling close() will not cause any particular problem.

That being said, you really should reconsider having "a service running in the background too all the time".

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