tags:

views:

51

answers:

2

Hi, What 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?

+1  A: 

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).

Franci Penov
ok thanks you sir
Abhinav