How to view existing data in Core Data?

Posted by mshsayem on Stack Overflow See other posts from Stack Overflow or by mshsayem
Published on 2010-05-11T13:47:59Z Indexed on 2010/05/11 13:54 UTC
Read the original article Hit count: 208

Well, may be this question is silly, but I couldn't find a way (except programmatically). I built a project (for iPhone OS 3.0) which uses Core Data. The xcdatamodel file shows the schema description, but I want to see the data in tabular form (like the management studio for mssql server or phpmyadmin for mysql).

Is there any way (except coding)? What is that?

Also, which file (in disk/device) those data are stored into?

[ I built the tutorial (from apple) on Core Data, named Locations. They used this line somewhere in the code: NSURL *storeUrl = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"Locations.sqlite"]];

But, I did not see any "xxxxx.sqlite" file in project location (nor in the disk).]

© Stack Overflow or respective owner

Related posts about core-data

Related posts about iphone-sdk