What is difference between CoreData and SQLite?
Ask by Sunil Singh
Updated 23 Sep 2020
SQLite 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.