Reputation: 3497
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
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