Reputation: 115
I have an issue when am trying to access the database file that is created by core data. The DB file is in Documents folder. I've copied this to my desktop and opened it using Firefox plug in. Hello.sqlite
file doesn't contain any rows that I have inserted values using core data. Am running app using iOS 7 simulator. I can see the rows are inserted when am using iOS-6. Do any body have an idea, why I cant see values in my Hello.sqlite file
????
Upvotes: 2
Views: 1468
Reputation: 389
I hope the below link is useful for u http://www.codigator.com/tutorials/ios-core-data-tutorial-with-example/
Upvotes: 0
Reputation: 16864
To view your project data do the following:
Upvotes: 3
Reputation: 1697
This is because of a new SQLite journal mode used in iOS 7. If you set it to the old mode as shown in the answer to the following SO question you should see your data again.
How to disable WAL journal mode
Upvotes: 1