Re: [android-developers] Re: Need help on connecting android app to remote database.

2011-11-09 Thread Ratheesh Valamchuzhy
this will really help http://www.helloandroid.com/tutorials/connecting-mysql-database -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Re: Need help on connecting android app to remote database.

2011-11-09 Thread hhenne
Also recommends REST services and using JSON. Recommends Playframework as server for implementing REST services. On the client side you can use a RestClient class to help you with communication. Google for it. Use the AsyncTask object for handling server communication in background. Use the org.jso

Re: [android-developers] Re: Need help on connecting android app to remote database.

2011-11-07 Thread Francisco Dalla Rosa soares
create a REST API to do the operations you need. That's the easiest and cleanest way. 2011/11/8 fba > Hi Charan, > > There isn't an easy way in Android to access a remote database. I > suppose you could dig around and figure out how mysql communicates > across the network, and then develop an

[android-developers] Re: Need help on connecting android app to remote database.

2011-11-07 Thread fba
Hi Charan, There isn't an easy way in Android to access a remote database. I suppose you could dig around and figure out how mysql communicates across the network, and then develop an interface from there. However, it seems that would be pretty involved. I had a need to do something similar wit