JonnyCav
Member
I am trying to make a backup of my database using
But the file I can access (via my PC) only seems to show the records in the tables as they were when the database was first loaded.
My app works perfectly (updated records etc) but when I use this command it does not show updates/inserts.
Am I missing something?
Thanks for any pointers.
Backup:
Private Sub btnBACKUPDatabase_Click
Dim dbd As String
dbd = DBUtils.GetDBFolder
Log(dbd)
DBUtils.CopyDBFromAssets("SWSU.db")
DBUtils.cop
End Sub
But the file I can access (via my PC) only seems to show the records in the tables as they were when the database was first loaded.
My app works perfectly (updated records etc) but when I use this command it does not show updates/inserts.
Am I missing something?
Thanks for any pointers.