how to allow android to access/modify a remote database
I'm running a .net aspx application. I'll need my android app to access and modify/insert information into开发者_JS百科 the ms sql database. is there any api ? thank you
You don't need any special API. Just use Android's HTTPCLIENT and perform POST
and GET
operations against your ASP.NET application to access and modify SQLServer's data.
Not that I'm aware of but you could write a server app on the client machine (or any machine with access to the DB) and connect to that via your android app and send commands.
精彩评论