views:

10

answers:

1

Can we map an sqlite file to coredata?

A: 

You can use sqlite as the persistent store for Core Data. Yes. This happens by default using the Xcode templates.

You can load data from sqlite into Core Data. Yes. Open your sqlite db, and load the records into Core Data.

There are several Core Data tutorials located on the Web.

If you're asking can you map an existing sqlite db into Core Data. Theoretically, however, loading data from an existing sqlite db into Core Data using the core data methods is far easier.

Jordan