In my IOS app I have
db=new SQLiteDatabase
dim dbfile as folderitem=SpecialFolder.Documents.Child(“gamedata.sqlite”)
db.DatabaseFile=dbfile
if not db.Connect then
end if
But copyfiles in the IDE gives me a destination of
app parent folder
resource folder
framework folder
bundle parent folder
contents folder
How do I get the database in a locatable location from a build?
Thanking you in advance!