I wanted to build an application that runs on android using purely html, javascript and a database ( sqlite maybe? ). I have not done android development before. My question is that is it possible to develop a database application for android using only html, javascript and a database? Is there any other better database supported than sqlite?
Thanking you
Imran
There are 2 possible approaches:
Use a webview to embed your html5 application and add a Javascript interface with a database access layer:
http://developer.android.com/guide/webapps/webview.html
Use the Phonegap framework to access the SQLite database from Javascript:
http://docs.phonegap.com/en/1.7.0/guide_getting-started_android_index.md.html#Getting%20Started%20with%20Android