user3419018
user3419018

Reputation: 1

android application connect to local server via mysql database?

I need to send data from an android application to the database, then access the same from a webpage with the help of a local server.

Can anyone suggest me how to link an android app to the database and view the same on a browser?

What are all the tools required?

If anyone can also help me by suggesting me a way or giving me suitable links of tutorials that can help, I'll be thankful!

Cheers

Upvotes: 0

Views: 4019

Answers (2)

vinothp
vinothp

Reputation: 10069

To Connect to remote database you need to do certain steps

STEP 1 : Prepare data to send to Web Service in Android

STEP 2: Create MySQL Database in your local server.

STEP 3: Implement Web Service in your local server. Web Service is the code which used to process the data sent from android device. Insert the received data in to the database

STEP 4: Now you can access your database and display it in web browser.

Here is one of the Good Tutorial

Upvotes: 0

Related Questions