Reputation: 5
I was to trying to connect Ms sql file directly from my Android Activity file, but I couldn't do that. So I created asp.net webpage to connect ms sql so that I can get the data. However, I don't know how to pass the data from asp.net webpage to Android Activity class?
Upvotes: 0
Views: 109
Reputation: 15923
Fetch the data using a service into a JSON from the asp.net page and then parse the JSON in the android app. This is how you will be able to exchange data and the store it in a db from android app.
Upvotes: 1