Nick
Nick

Reputation: 93

Phonegap Relational Database

I'm creating a Phonegap / Cordova application which is going to pull a lot of list views from a relational database.

When I search around, a lot of the stuff I find on the web is around HTML5 localstorage and the client-side database within iPhone which has a limit of 5mb.

I expect my database to be larger than 5mb so I want to try and bundle SQLite with my Application... or at least I think I want to!

What is the best approach for a relational database on Phonegap (iphone / android)? How do you bundle a database with a PhoneGap app?

Thanks,

Nick

Upvotes: 0

Views: 458

Answers (1)

pepito
pepito

Reputation: 11

You may look a jembe for this (http://www.jembe.fr). jembe let you embed a big sqlite database. The API to access this database is similar to standard js API.

Upvotes: 1

Related Questions