Dear Friends,
I am executing some sqlite query in the Android emulator. I want to know which path that database files are storing. Pls give me some idea how to find it. If u can provide me some code snippet.
urs, s.kumaran.
Dear Friends,
I am executing some sqlite query in the Android emulator. I want to know which path that database files are storing. Pls give me some idea how to find it. If u can provide me some code snippet.
urs, s.kumaran.
The databases are usually stored in
/data/data/your.applications.package/databases
and you can use the adb shell
to cd
to that directory and open the db with sqlite3
.
Hi there
I am trying to copy a 'free version' database into the 'paid version' directory using File.renameTo(). It seems to copy the file, but the full version app doesn't recognise that there is a database, nor does it run the onCreate for the database...
Any ideas how to do this?