views:

29

answers:

1

Hi,

I create an application using Coredata. I create a XML file and store all data into XML file. Then using coredata i store them into Database. Now i want to view the all records from core data. My application create a sqlite file. But if i use select command in sqlite, there is no records displayed. But It shows "no errors". If there is any way to view my records from core data or from Sqlite?

If anybody know the solution, please help me.

Thanks.

+1  A: 

I faced the same issue, and need to investigated the sqlite db created by coredata. I used the free Sqlite database browser. http://sqlitebrowser.sourceforge.net/

And browsed to the path where the sqlite file is.

pdiddy
I known the sqlite file path. I open the sqlite in sqlite Software. But there is no records to displayed in sqlite application. But i got all records through my program code and display all records in UITableView. But all records displayed randomly, not as entered sequence(Order). My problem is i want to view all records which are i entered order.
Velmurugan
here is a good link to use core data and view it in a uitableview. I believe the author also uses xml initially. http://blog.sallarp.com/iphone-core-data-uitableview-drill-down/
pdiddy