Is it possible to choose a custom location for the sqlite database file?
If possible I want to store the database file in the memory card. And if user switches from one memory card to the other I want my application to use whatever version of the database file available on the card.
By default your database is stored in data/data/your_package/databases
You can use
SQLiteDatabaseopenOrCreateDatabasewhere you can supply the path to your custom database as your first argument.