I have a sqlite script as a .db file and I want to execute it in order to create and fill coredata tables. There is a way to perform that with objective-C on a iPhone application ? Can't find a solution.
Thanks for your help.
No, you cannot mix plain SQLite and Core Data based SQLite. Core Data uses a specific design for its tables that you should not try and replicate outside of Core Data.
Use Core Data to populate a Core Data SQLite file.