Read through my app's Core Data files (.sqlite, .sqlite-wal) Read through my app's Core Data files (.sqlite, .sqlite-wal) sqlite sqlite

Read through my app's Core Data files (.sqlite, .sqlite-wal)


Well, for some reason I had to force not using WAL in my store (using @"journal_mode":@"DELETE" as explained here).

I then got only .sqlite file without the smh and wal files, and was able to open it and view the data using the 2 mentioned tools (Core-Data-Editor and CoreDataUtility).

My guess is that this is something to do with either the fact that I am dealing with CoreData from a framework (creating a moc, creating entities, saving etc.) and not from the application. Another guess is that it has something to do with the fact that I am using MagicalRecord.

Any insights regarding the cause would be appreciated...