I’m developing an application in android. I use an sqlite3 database. But I need to implement in mysql database using wamp server.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You’ll have to use PHP scripts which handle all the database things on your WAMP.
This script will react as a bridge between your MySql and Android.
After this, make network requests to this script from your Android device and get data returned by the database.
You must understand that MySql isn’t available to Android devices locally, thus you can’t access it the way you access sqlite on a device. To get this, you’ll have to implement something like a webservice.