How can I have database connectivity for HTML5 for mobile applications to store data on a web server?

391 views Asked by At

How can I have database connectivity for HTML5 for mobile applications to store data on a web server?

For now, I am trying for an Android device, but I will also be using it for iPhone. I am using the Eclipse editor.

1

There are 1 answers

0
Kevin Dolan On

The most typical way to do this is to build a web service that acts as a frontend for the data you want to store.

You will have to create website which can accept and process some data, potentially persisting, modifying or retrieving from a database, and access this website from the app's code.

Providing direct access to a database to arbitrary users would be very unwise.