What is the most efficient way to see a DB from android [closed]

1

I would like to know what would be the most efficient way to create an app for android that the only thing you do is consult a database on a computer, the computer has an inventory software made with Visual Fox Pro, the database of the software is .DBf, I want to create an app that simply check that database, I do not want to edit or add records, only that the app has a textbox where a query is placed and it shows the results (Select "query" from " table ") with what language would be more convenient to program it and what would be the easiest way.

    
asked by Jeffrey Cedeño 25.06.2016 в 20:13
source

1 answer

0

The way in which this is commonly done in an android application is through a Web Service, you can perform a method that looks at the contents of the database.

link

link

I recommend this example:

Consume Web Service in Android

    
answered by 25.06.2016 / 23:22
source