I can't find sqlite database in my project. In file folder there are no database. its empty. But my data is saving successfully and its loading. Please help
/data/user/0/com.companyname.MyApp/files/
This is my database path.
var dbName = "dbApp.sqlite"; var dbpath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.ApplicationData); var path = Path.Combine(dbpath,dbName); var conn = new SQLiteConnection(path);