Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find the path of Database file in Android Emulator?

Tags:

android

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.

like image 456
Kumar Avatar asked Jul 27 '09 04:07

Kumar


1 Answers

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.

like image 110
Josef Pfleger Avatar answered Oct 07 '22 22:10

Josef Pfleger