Hi Rob ,
No it is not the new sqlite connection.
When the App launches I'm running the below line of code
this.dbpath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "mydatabase.db");
And then
StorageFolder storageFolder = ApplicationData.Current.LocalFolder;
StorageFile databaseFile = await storageFolder.GetFileAsync("mydatabase.db");
Does this Path.Combine causes the issue ??
Perhaps needs to check first if the database file exists ?????
thank you