[android-developers] Re: Connecting Andrid Application to Sql Server Database

2011-04-10 Thread Nicholas Johnson
The best way I've found to connect your local (app) database to your server database is to exchange information through JSON strings. Post a query through an HTTP POST method to your website, decode the information, process the SQL query on the server (I use PHP), then build and send a JSON

RE: [android-developers] Re: Connecting Andrid Application to Sql Server Database

2011-04-10 Thread Tommy
Subject: [android-developers] Re: Connecting Andrid Application to Sql Server Database The best way I've found to connect your local (app) database to your server database is to exchange information through JSON strings. Post a query through an HTTP POST method to your website, decode

[android-developers] Re: Connecting Andrid Application to Sql Server Database

2011-04-08 Thread Mohit Sharma
If your java app is web app u can directly go to ur app using webview.In one of my project actually i created web service and then accesed those web services using Ksoap. On Apr 4, 12:05 am, ADAWi ADAWi ada...@gmail.com wrote: Hello I am new to Android application development and I am using