N3sh
N3sh

Reputation: 878

How to use Postgresql or MySQL database offline on Android?

I am looking for a way to use either PostgreSQL or MySQL (I am using the former, but I could just find a way to export it to MySQL and use that one) database offline.

I need to be able to query a database offline on an Android device.

Is it possible? Using JDBC it should be possible, isn't it?

Upvotes: 0

Views: 1563

Answers (1)

maniek
maniek

Reputation: 7307

use SQLite . It is available out-of-the-box, and supported since version 1.

Upvotes: 5

Related Questions