标签: android android-sqlite android-contentresolver
我想使用ContentResolver.bulk(uri, ContentValues[])方法。
ContentResolver.bulk(uri, ContentValues[])
我将sqlite数据库存储在app私有存储区内的数据库文件夹下。数据库名为 mydb.db
sqlite
名为BUDGET的桌子的Uri是什么?我是否需要以某种方式将ContentResolver连接到我的数据库?
ContentResolver
答案 0 :(得分:1)
您需要实施内容提供商。然后,您的内容提供商会将数据存储在SQLite DB中。有关详细信息,请参阅Android docu。