Frank.Five
Frank.Five

Reputation: 13

Where is the Sqlite file in Android

I used PhoneGap to create a Sqlite db and access it to read data. So I want to find out where the Sqlite file is located in my android device. Please show me

Upvotes: 1

Views: 710

Answers (2)

coderslay
coderslay

Reputation: 14370

If you use phonegap then your database will be at location

/data/data/package-name/app_database/file__0/0000000000000001.db

And all your tables will be stored there....

Upvotes: 1

Marcos
Marcos

Reputation: 4653

If your package is com.exampl.hello then

/data/data/com.example.hello/databases/databasefile

where databasefile is the name of your database.

Upvotes: 0

Related Questions