Reputation: 1301
i m new in android develpment. where database foloder exists in android while creating a new db using create database command.i m using sqllite for database
Upvotes: 0
Views: 136
Reputation: 13194
The new database is created in the Android's internal storage in the data/data/your.app.packagename/databases
folder.
Upvotes: 0
Reputation: 57702
The database should be at /data/data/your.package.name/databases/your_db_name
Upvotes: 1