Hank
Hank

Reputation: 3497

Android Relational Database with Java Persistence

A desktop version of our software uses a relational database with Java Persistence API. We want to port the software to Android while keeping the relational database model. So is it possible to integrate a relational database with Java Persistence into an Android app?

Upvotes: 0

Views: 725

Answers (1)

Nikolay Elenkov
Nikolay Elenkov

Reputation: 52936

Java Persistence as in Hibernate, EclipseLink, etc., no. There are however lightweight ORM solutions that work on Android such as OrmLite if you really feel you need to use ORM.

Upvotes: 1

Related Questions