I\'m really a beginner, I\'m reading many different Android books as I would like to learn how to develop my own app.
The app I\'ve in mind is going to access to a r
You need to write a server-side-service that will allow you to manipulate your data from your Android device.
There is no easy way of connecting Android DIRECTLY to a remote database.
You solution should be something like this:
ANDROID -> SERVER-SIDE-SERVICE -> DATABASE
DATABASE -> SERVER-SIDE-SERVICE -> ANDROID
For your SERVER-SIDE-SERVICE I would recommend you use any WEB/HTTP server side service written in your favorite language: Java, Python, ASP.NET (C#/VB.NET), PHP, you name it.