New to Android: openOrCreateDatabase(): where does the sqlite file go?
When I call
myDB = this.openOrCreateDatabase("DatabaseName", MODE_PRIVATE, null);
Where does the database fi开发者_C百科le get created?
I can't find it anywhere. o_O
All databases, SQLite and others, are stored on the device in /data/data/package_name/databases
.
http://developer.android.com/guide/topics/data/data-storage.html
精彩评论