0

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.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131

1 Answers1

0

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.

Kevin Dolan
  • 4,952
  • 3
  • 35
  • 47