Reputation: 5794
I have created database by sqlite magager-firefox adons and I have saved that database in my asset folder. I don't know how to fetch the values of that database. Can anyone tell me how to do it?
Upvotes: 0
Views: 172
Reputation: 1007276
There is a reusable library for this nowadays, SQLiteAssetHelper
, that assists you in packaging a database with your app and copying it into position when you first need it. You cannot query a database directly from your project's assets, though, which is why you need something like SQLiteAssetHelper
.
Upvotes: 1