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 remote database in order the write and read data. I would like to ask your advise about how this is usually done, best practices.
I want to learnt about databases as I actually know so little (just how to make some sql queries and procedures) and I would like to focus my learning towards Android integration.
Thanks a lot.
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:
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.