0

I want to make a program for a restaurant, to hold foods and store customer recipe. What is the best way to store data? (core data - sqlite - ...)

Vinayak Garg
  • 6,518
  • 10
  • 53
  • 80
SajjadZare
  • 2,487
  • 4
  • 38
  • 68
  • possible duplicate of [Core Data vs SQLite 3](http://stackoverflow.com/questions/523482/core-data-vs-sqlite-3) – jrturton Mar 31 '12 at 06:42

1 Answers1

1

You will find a conversation about core data vs. sqlite here. But, with iOS 5.0 you get the added benefit of being able to use iCloud file-sync for free if you're using Core Data. If you're using SQLite directly it'll have to be a lot of manual tinkering and implementation to get it to sync across iCloud.

Community
  • 1
  • 1
Abdullah Md. Zubair
  • 3,312
  • 2
  • 30
  • 39