I have an app that reads from a sqlite Database. I recently updated the database and wanted to include the new one, so I deleted the old (chose "Move to Trash") and replaced it with the new one. The data still seemed to reflect the old version. I deleted the database again, thinking that should trigger an error when the code to look it up ran:
let path = NSBundle.mainBundle().pathForResource("members", ofType:"sqlite3")
but the app still ran fine (all on my simulator). Is it hiding somewhere that I need to remove a reference from? Is this going to be a problem for my users? It's read-only on their end.
EDIT:
The schema has not changed, this is just some new or updated data. I'm lost.