Reputation: 6959
I want to build my app in HTML, and bundle it as Android application with a single WebView.
How do I access database? (sqlite I guess)
I don't want HTML5 storage, because that's limited -> unreliable.
My solution would be to write a JS interface for storing data, but that feels like reinventing the wheel.
Is there already something that lets my JS talk to SQlite through the webview?
Upvotes: 1
Views: 658
Reputation: 15089
I recommend PhoneGap
http://phonegap.com for not re-inventing the wheel :)
Upvotes: 1