views:

300

answers:

3

Hello guys!

Can you give me a good start for this? Thanks!

+3  A: 

Use Core-Data to handle SQL-Lite on the iPhone. Check these tutorials, they helped me a lot: http://iphoneinaction.manning.com/iphone%5Fin%5Faction/2009/08/core-data-part-1-an-introduction.html

Regards, Paul Peelem

Paul Peelen
thank you very much!
Infinity
Though Core Data uses SQLite today, there is no guarantee that it will do so in a future release. To use SQLite and to use Core Data for persistent storage are clearly two different solutions.I have an application that I ported to the iPhone that uses an SQL database on another platform. The effort that would have been required to convert this application to use Core Data would have been prohibitive. To simply convert it to another SQL library was trivial.-t
Tim
+1  A: 

there is a good c library. libsqlite3.dylib. you can find all needed documentation here

Morion
and here too :)
Infinity
+2  A: 

I agree with Paul's answer. If you don't want to use CoreData though, you can still use straight pure C SQLite API. There is a lot of documentation on the issue. You can check the C/C++ examples on SQLite's website.

Pablo Santa Cruz