Android中是否可以使用ContentProvider并直接访问数据库数据?
我有一个使用直接数据访问其数据库的应用程序。我没有什么可以向其他应用程序公开的。正如 CommonsWare 在 SO 上的某处所说,“如果你没有什么可公开的 - 不要使用 ContentProvider”。现在,我想添加小部件来显示其中一个表中存储在数据库中的几个字符串。我是否应该将直接访问代码重构为ContentProvider模式?有没有办法从小部件直接访问数据库?有没有一种方法可以在一个应用程序中同时拥有 ContentProvider 和直接访问数据库的能力?
I have application that uses direct data access to it's Database. I have nothing to expose outside of it for other applications. As CommonsWare says somewhere on SO, "if you have nothing to expose - don't use ContentProvider". Now, I want to add widget to display a couple of strings from one of the tables, storing in Database. Should I refactor the direct access code to the ContentProvider pattern? Is there a way to use direct access to Database from widget? Is there a way to have both ContentProvider and direct access to database in one application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设“小部件”实际上是指“应用程序小部件”。
您不必仅仅因为正在编写应用程序小部件就这样做。
当然,使用与应用程序中其他任何地方使用的机制相同的机制。
是的,尽管您必须小心一点,以确保在这两种情况下使用相同的 SQLiteDatabase 对象,这样就不会遇到线程问题。
I am going to assume that by "widget" you really mean "app widget".
You do not have to do this just because you are writing an app widget.
Sure, using the same mechanisms you are using anywhere else in your app.
Yes, though you have to be a bit careful to make sure that you are using the same
SQLiteDatabase
object in both cases, so you do not run into threading issues.