2

I created project from this URL: http://www.vogella.de/articles/AndroidSQLite/article.html

but where is the database file (.db or .sqlite)?

Can anyone tell me the exact location?

Waiting for your response....

tigmanshu7
  • 23
  • 3

3 Answers3

4

The databases are stored in

/data/data/your.applications.package/databases

you can use the adb shell to that directory and open the db with sqlite3.

Harinder
  • 11,776
  • 16
  • 70
  • 126
3

Basically your database will be stored in this location

data/data/your.project.packageName/databases

Andro Selva
  • 53,910
  • 52
  • 193
  • 240
2

show this

in DDMS>> file explorer you can get db file

Community
  • 1
  • 1
Nikunj Patel
  • 21,853
  • 23
  • 89
  • 133