I have normal persons.db ,
I compile the program and INSERT/DELETE data on db. anything.
But after I close emulator and check the persons.db again ,I cannot see any changes in it. What can be the reason?
I use SQLiteLight2 example:
If FirstTime Then
File.Delete(File.DirInternal, "persons.db") ' only for testing, removes the database
If File.Exists(File.DirInternal, "persons.db") = False Then
File.Copy(File.DirAssets, "persons.db", File.DirInternal, "persons.db"
SQL1.Initialize(File.DirInternal, "persons.db", True)
File.Copy(File.DirAssets, "persons.db", File.DirInternal, "persons.db")
Else
SQL1.Initialize(File.DirInternal, "persons.db", True)
End If
End If
I compile the program and INSERT/DELETE data on db. anything.
But after I close emulator and check the persons.db again ,I cannot see any changes in it. What can be the reason?
I use SQLiteLight2 example:
If FirstTime Then
File.Delete(File.DirInternal, "persons.db") ' only for testing, removes the database
If File.Exists(File.DirInternal, "persons.db") = False Then
File.Copy(File.DirAssets, "persons.db", File.DirInternal, "persons.db"
SQL1.Initialize(File.DirInternal, "persons.db", True)
File.Copy(File.DirAssets, "persons.db", File.DirInternal, "persons.db")
Else
SQL1.Initialize(File.DirInternal, "persons.db", True)
End If
End If