Reputation: 1948
I'm wondering whether there is a technology similar to SQLite that would allow me to save data offline on different platforms including iPhone.
I'm using Phonegap so I don't know what the limitations are there, and whether it'd okay to use SQLite, or is there something better?
It's now working fine with Android, but will it be the same with iOS?
Upvotes: 0
Views: 566
Reputation: 29572
See the PhoneGap Storage API that's based on the W3C Web SQL Database Specification and W3C Web Storage API Specification. It's implemented for Android, IOS, and Blackberry.
Upvotes: 1