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 - ...)
Asked
Active
Viewed 271 times
0
-
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 Answers
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
-
The question is about OS x, not iOS, but the rest of your answer is valid. – jrturton Mar 31 '12 at 06:41