Deepa
Deepa

Reputation: 1301

android database

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

Answers (3)

Mudassir
Mudassir

Reputation: 13194

The new database is created in the Android's internal storage in the data/data/your.app.packagename/databases folder.

Upvotes: 0

WarrenFaith
WarrenFaith

Reputation: 57702

The database should be at /data/data/your.package.name/databases/your_db_name

Upvotes: 1

Mojo Risin
Mojo Risin

Reputation: 8142

/data/data/your.package/databases

Upvotes: 1

Related Questions