1

I have 15k entries and i want store them in local database. Further in iOS app I m going to use this data. For this which local database should I prefer in terms of performance also? How should I proceed? How much maximum data can I store locally?

Thanks in advance

Swapnil
  • 1,858
  • 2
  • 22
  • 49

2 Answers2

1

Use core data with sqlite. I think you have 2GB of local disk space to play with.

David
  • 14,205
  • 20
  • 97
  • 144
0

I have used Core Data for the same scenario like this. I have found the below tutorial very useful

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

Pras
  • 243
  • 1
  • 13
  • I m not aware of core data, I m little bit aware of sqllite so can i use sqllite in above scenario? – Swapnil Jul 21 '11 at 06:34
  • 1
    See http://stackoverflow.com/questions/6390605/best-way-to-store-data-on-iphone/6391408#6391408 Technically, Core Data is better for most cases, but if you are familiar with SQLite and not Core Data is your choice, both do the job. – Jano Jul 21 '11 at 07:22
  • You can use sqlite also for the above scenario. I used both sqlite and coredata and i found coredata more effective and easy – Pras Jul 22 '11 at 10:54