Reputation: 751
Hi
i have very large database so i am not able to store it in... \data\data\"PACKAGE_NAME"\databases
so i want to store database in Assets and access it from there .I do not want to copy database from assets into \data\data\"PACKAGE_NAME"\databases ..
So any fertile brain there to plant solution.....
Upvotes: 1
Views: 2201
Reputation: 22159
You can use SQLiteDatabase.openDatabase or its siblings openOrCreateDatabase
to place a database in a path of your choosing.
Upvotes: 2