views:

153

answers:

1

hi

how to access my web application database in android emulator, i want list out my database values. These are in my web application.

database name employees and table: employee_data

i want to get employee_data data on android emulator.

A: 

If your database belongs to the web application, you can simply create a web page or service ( something like "CallMyBD.php?func=get" or "CallMyBD.jsp" or anything else ) and print ( for example: "echo $employee_data;") the employee data as the web call result.

There comes one more if: If you create an android application and run it on emulator, you can connect to your web application with httpPost, get the result, parse it and show it.

miette