I have created a SQLite database from Java. Now I want to know where it is stored physically on disk, so that I can push that file on to Android.
2 Answers
SQLite usually produces one file with the extension .sqlite, but this is just convention, the extension can be anything.
As already was said, the code which opens the database spefifies the path where the file should be stored, so you have to look there.
1 Comment
Mudassir
Thank you. Since I am not providing any path, the database was created at the package's location. :-)