Say I add a SQLite database file to a project (like I have), but then edit / add info to the original database under windows environment. Will the file auto update in my app or do I add it again?
If I have to add it again (which I suspect I will), how will that effect this statement:
If FirstTime Then
If Not(File.Exists(File.DirInternal, DataBaseName)) Then
dbutils.CopyDBFromAssets(DataBaseName)
End If
SQL.Initialize(File.DirInternal, DataBaseName, False)
End If
Obviously, As I have been developing and testing app, it's not the first time it has been run so the new database won't be copied to the reading destination. Hope that makes sense.
Thanks