Aamirkhan
Aamirkhan

Reputation: 5794

How to fetch database values sotred in asset folder?

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

Answers (1)

CommonsWare
CommonsWare

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

Related Questions