Darwin
Darwin

Reputation: 189

Connect Android App on a PC-based database

I'm creating an Android App that would have to access a database on my PC. I know how to program in Java and access a MySQL on my PC using JDBC ODBC. Could anyone lead me to the right place?

Upvotes: 0

Views: 494

Answers (1)

IvoryCirrus
IvoryCirrus

Reputation: 622

android don't support jdbc.
why don't you make a application-server?

the architecture is this.
Android <<--(using REST/JSON)-->>Application-Server(including JDBC or ODBC) <<-->> Database

using json or rest is good to reduce data traffic.
and generally the application server is faster than Android device.

Upvotes: 1

Related Questions