SqliteOpenHelper for Mode_World_Readable,怎么样?
SqliteOpenHelper
默认情况下以 mode_private
创建数据库。我们如何使用 SqliteOpenHelper 创建世界可读/可写数据库?
SqliteOpenHelper
by default creates database in mode_private
. How can we create world readable/writable db using SqliteOpenHelper ?
Or Else Do I need to use Context.openOrCreateDatabase()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们不能那样做。
ContextImpl.openOrCreateDatabase()
实际上使用SQLiteDatabase.openOrCreateDatabase()
方法打开/创建数据库,然后使用类android.os.FileUtils 设置数据库文件的权限
这不是公共 API 的一部分。因此,除非您想使用反射,否则使数据库世界可读/可写的唯一可能方法是使用 Context.openOrCreateDatabase() 。We can't do that.
ContextImpl.openOrCreateDatabase()
actually opens/creates database usingSQLiteDatabase.openOrCreateDatabase()
method and then sets the permission for the database file using classandroid.os.FileUtils
which is not part of the public API. So unless you want to use reflection the only possible way to make database world-readable/-writable is to useContext.openOrCreateDatabase()
.将数据库打开为世界可读/可写绝对是可能的。那么数据库的必要性是什么呢?您可以使用文件代替..!!
不建议将数据库打开为全局可读/可写。
永远记住这一点:
仅在必要时打开数据库,
因为它的成本很高。
仅在必要的模式下打开
读取或写入或两者。
结束了。
如果您想在应用程序之间共享数据库或资源,可以使用 SharedUserID。为了使用 SharedUserID,应用程序必须使用相同的密钥进行签名。
有关详细信息,请参阅我在 sree.cc 上发布的帖子
http: //sree.cc/google/android/sharing-resources-in- Different-aplications-using-shareduserid
这是相同的代码片段:
不推荐:
如果您想要单词可读,然后将其创建为世界可读。使用
openFileOutput()
或openOrCreateDatabase()
。将创建数据库的上下文声明为全局可读。请注意,此方法无论如何都不安全。在此做个参考。
http://developer.android.com/reference/android/content/Context .html#MODE_WORLD_READABLE
Opening a Database as world Readable/writable is definitely possible. But then what is the necessity of a Database? You can use files instead..!!
Opening a Database as world Readable/writable is not recommended.
Always remember this:
Open a database only when necessary,
because it is costly.
Open only in the mode necessary either
read or write or both.
are over.
If you want to share a Database or a resource among your applications you can use SharedUserID. Inorder to use SharedUserID, the applications must be signed by the same Key.
For More info see my post here at sree.cc
http://sree.cc/google/android/sharing-resources-in-different-aplications-using-shareduserid
Here is the code Snippet for the same:
Not recommended:
If you want the word readable, then create it world readable. Use
openFileOutput()
oropenOrCreateDatabase()
. Declare the context that creates the DB as World readable. Note this method is not safe by any means.Do a reference here.
http://developer.android.com/reference/android/content/Context.html#MODE_WORLD_READABLE