What is difference between CoreData and SQLite?
4530
12-Jan-2017
Home / DeveloperSection / Interviews / What is difference between CoreData and SQLite?
Sunil Singh
12-Jan-2017SQLite is a database like MS SQL Server and MYSQL. Core Data is is an ORM (Object Relational Model) that creates layer between UI and database. Core Data improve the performance of (in terms of memory and speed) application in case of large data. Core Data operates on Objects stored in memory. SQLite operates on Objects stored in disk.