Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android SQLite DB location

Is it possible to store my applications SQLite database in some other location that I define instead of the default /data/data//databases location?

Thanks

like image 849
BuckeyeDroid Avatar asked Jul 20 '26 21:07

BuckeyeDroid


1 Answers

This might be helpful. It demonstrates how to store a db in the assets folder of your app, (though all it does is copy over the db to a /data/databases database, so I'm not sure if that will help your situation.)

Could you give a little more context as to why you want to store your database elsewhere?

like image 198
QRohlf Avatar answered Jul 22 '26 11:07

QRohlf