views:

50

answers:

2

I am really confused on how to get data in and out of an android app from the internet.

I imagined that i would store information in the mysql db on the server i already have set up. But from what I have read, I would need some type of in-between web service to make quiries with data sent from the app.

Can anybody toss me some tips on how to get something like this started.

Or, if you know of a better way, let me know about it.

+2  A: 

This question has been asked several times, for example here: http://stackoverflow.com/questions/2898823/get-data-to-android-app-from-mysql-server.

Bottom line - you don't conect directly. You have something on your server (like RESTful) that you connect with via HTTP.

EboMike