0

Does DataNucleus support android with built-in sqlite or any remote database such as mysql? EclipseLink does not support android yet.

eastwater
  • 4,624
  • 9
  • 49
  • 118

1 Answers1

0

DataNucleus JPA/JDO supports persistence to SQLite, certainly, as well as to all other mainstream RDBMS (and other databases besides).

DataNucleus has been used by some groups on Android with SQLite (SQLDroid), but I have never. Suggest that you read this thread from their forum.

Neil Stockton
  • 11,383
  • 3
  • 34
  • 29
  • Thanks for info. It is not clear from that thread if android is officially supported. It seems that SQLDroid has been stopped developing since 2015. SQLite does not have its own JDBC driver? – eastwater Aug 16 '17 at 18:19
  • SQLite has a JDBC driver but, like all JDBC drivers, contains native code that is not portable, hence there is SQLDroid for use on Android, or at least that is what a simple web search tells you ... https://stackoverflow.com/questions/1728476/does-android-support-jdbc – Neil Stockton Aug 17 '17 at 06:16