Panagiotis Panagi
Panagiotis Panagi

Reputation: 10077

Options for storing thousands of records (available offline) with iOS/Phonegap

I need some guidance for storing 600K-900K records, and make them available offline (within the app).

According to this, it could be based on Core Data, however I was wondering if PhoneGap or some plugin provides any viable solutions. I'm trying to avoid coding in Objective-C.

Upvotes: 0

Views: 275

Answers (1)

Simon MacDonald
Simon MacDonald

Reputation: 23273

The best thing to so would be to create a pre-populated sqlite db and copy it to the correct location the first time your app starts up.

http://gauravstomar.blogspot.ca/2011/08/prepopulate-sqlite-in-phonegap.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+GauravSTomarBootstrappingIntelligence+(Gaurav+S+Tomar+:+Bootstrapping+Intelligence)

Upvotes: 2

Related Questions