Re: [android-developers] File location of database file by using SQLiteDatabase

2012-07-16 Thread Francisco M. Marzoa Alonso
These are under /data/db/packagename or something similar. You cannot access to database files straightforward on a real device if it is not chrooted. On Jul 16, 2012 2:53 PM, "Alok Yadav" wrote: > Hi All, > > In SQLiteDatabase, Table and its rows and columns are saved in a file. > > i want to kn

[android-developers] File location of database file by using SQLiteDatabase

2012-07-16 Thread lbendlin
SQLite databases are by design confined to a single file. Doesn't really matter where the file is as long as you have write access to that location. That also means that normally you need to copy any prepared database from the assets or raw folder of your apk to the documents folder or somewhere

[android-developers] File location of database file by using SQLiteDatabase

2012-07-16 Thread Alok Yadav
Hi All, In SQLiteDatabase, Table and its rows and columns are saved in a file. i want to know the location that database file in which inserted new record and updated new record saved. Pls suggest me the location of that file as i want to see my data in that file. 1) If i am using my app in Em