Role of SQLite in iPhone programming [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this questionWhat is the role of SQLLite in iPhone programming? Where do we use it? Is there any nice link to read around this topic in detail with sample code?
SQLite is a lightweight in-memory relational database, that can be used directly by iOS apps, or as a persistent store for Core Data.
Here's a good list of resources about directly using SQLite on iPhone. And the Apple Developer Center has a lot of info on how to use it as a store for Core Data (and how to use Core Data itself, of course).
精彩评论