i want read the values from the remote database . that is table values in the mysql server database. Is there any way to connect to the remote database ?. without running a web service in the server and parsing the xml in the client side.
Printable View
i want read the values from the remote database . that is table values in the mysql server database. Is there any way to connect to the remote database ?. without running a web service in the server and parsing the xml in the client side.
You have to use some network calls whether at the TCP/IP socket level or HTTP to communicate with the machine where the database is.
Then you need on the machine where the database is, a server application that knows how to access the database and return the data to the client.
Then you need a way to structure the client requests and server responses. Whether you use XML or some other way you devise, is up to you.
The wiki might have existing/suitable examples for you to adapt.