1

Possible Duplicate:
Use CoreData or SQLite on iPhone?

what is the difference between coredata and sqlite?

when we have to use coredata ?

when we have to use sqlite ?

Community
  • 1
  • 1
user422801
  • 11
  • 2
  • Does't sound like a real question and the chance of closing this question is more. Wht not say what your situation is and ask whether xyz DB is better or abc is better? – Shoban Aug 17 '10 at 11:53

1 Answers1

0

There's no "have to". If you are more comfortable with sqlite then by all means use it. However Core Data is very convenient for all kinds of reasons such as built-in schema editing in Xcode, object model class generation, faulting (load one object, follow your object graph all over your model...)

But don't take my word for it, see this very well-answered Stack Overflow question.

Community
  • 1
  • 1
Adam Eberbach
  • 12,309
  • 6
  • 62
  • 114