views:

59

answers:

2

I'm running a .net aspx application. I'll need my android app to access and modify/insert information into the ms sql database. is there any api ? thank you

+3  A: 

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.

Pablo Santa Cruz
A: 

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.

Jason
explain? O.o any more detailed like a tutorial?
Lots of subject to research here, Try learning on how to host a HTTP Server, or a TCP Socket Server, then you can send commands, and receive the answers through your server. If you choose to use HTTP Server then you can use HTTPCLIENT Class as suggested by Pablo to connect.
Jason