2

I use the SQL with VB.net to make such Projects But Now Im learning and Looking to SQLITE in iPhone apps where can I use it for any exemple about an app used the sqlite or something like it

Bobj-C
  • 5,276
  • 9
  • 47
  • 83
  • I'm confused. It looks like you're already using SQLite within your application: http://stackoverflow.com/questions/4174268/sql-read-data. Are you looking for a tutorial on how to do more? – Brad Larson Nov 15 '10 at 22:40
  • No i Don't need data but in other platform than ios you can use Sql especially when u have a huge database maybe ios cant handle large database (im not a professional just an opinion) – Bobj-C Nov 15 '10 at 23:38
  • @Bobi-C - Again, I don't really know what you're asking. Of course you can use SQLite for data access on iOS, and it is very performant even for relatively large data sets. Are you looking for where to use SQLite over other alternatives? – Brad Larson Nov 16 '10 at 01:33
  • No All i need an example about app using sqlite – Bobj-C Nov 16 '10 at 07:58

3 Answers3

1

You can use SQL Lite if you have to store larger amounts of data. For a small amount of data is NSUserDefaults practicable.

Pascalius
  • 14,024
  • 4
  • 40
  • 38
1

Checkout the following thread on SO to get answer to your question.

Where's the best SQLite 3 tutorial for iPhone-SDK?

Community
  • 1
  • 1
itsaboutcode
  • 24,525
  • 45
  • 110
  • 156
1

Are you sure you want to use sqlite - as opposed to using the Core Data framework?

http://developer.apple.com/library/ios/documentation/DataManagement/Conceptual/iPhoneCoreData01/Introduction/Introduction.html

Brad
  • 11,262
  • 8
  • 55
  • 74