Re: core data and sqlite db store problem

2008-04-01 Thread Adam Swift
On Mar 31, 2008, at 10:23 AM, Scott Guyer wrote: Thanks Jeff, That would explain it. Crikey...whole lotta Zs in the CD created SQLite schema. :) In XCode, there is an Design -> Data Model -> Import... menu item. It is looking to import an XML file of a particular format. Any point

Re: core data and sqlite db store problem

2008-03-31 Thread Scott Guyer
Thanks Jeff, That would explain it. Crikey...whole lotta Zs in the CD created SQLite schema. :) In XCode, there is an Design -> Data Model -> Import... menu item. It is looking to import an XML file of a particular format. Any pointers to this format? Could this be a way for me to

Re: core data and sqlite db store problem

2008-03-31 Thread Jeff LaMarche
Core data stores metadata as well as data in the sqlite3 file and follows a very specific naming convention for the regular data tables and columns. You'd probably be better off writing a small migration utility to import the data you need than to try create a sqlite3 database in the right

core data and sqlite db store problem

2008-03-31 Thread Scott Guyer
Hi, I'm just learning core data and have already stumbled on something. I created a CD application using the XCode template. I've created a sqlite3 .db file with data and a matching core data model in xcode. My code fails here... url = [NSURL fileURLWithPath: [applicationSupportF