Skip to content Skip to sidebar Skip to footer

Android.. How To Upload Data From Android Phone To Remote Database?

I am doing some android development, and now I need to send some android application generated data onto a remote server (a database)? How can I do that? can I use direct JDBC con

Solution 1:

Android doesn't come packaged with JDBC.

I recommend that you setup a web service (SOAP, RESTful, etc), and pass/retrieve data that way. It's more secure as well.

Post a Comment for "Android.. How To Upload Data From Android Phone To Remote Database?"