14

Could someone point out good tutorials/books for learning how to use/configure Hibernate in Android ?

Sergio
  • 8,532
  • 11
  • 52
  • 94

1 Answers1

18

AFAIK, Hibernate does not work on Android. Hibernate is designed for servers and JDBC, not Android devices and on-board SQLite.

Please see:

Community
  • 1
  • 1
CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
  • 4
    I looked at the links, thanks @CommonsWare. However it seems to me that they were discussing lightweights alternatives to Hibernate in Android, but they never explicitly said that Hibernet 'cannot' be used, or should not be used on very specific requirements. Is that really the case ? – Sergio Jan 27 '12 at 13:40
  • 2
    @Sergio: Considering that the Hibernate site itself says it needs the JVM and does not discuss Android at all, Hibernate most likely does not work on Android. – CommonsWare Jan 27 '12 at 13:47
  • So, can anyone tell me how Greenify work on Android? Does it actually hibernate other apps? https://play.google.com/store/apps/details?id=com.oasisfeng.greenify&hl=en – Nguyen Minh Binh Feb 25 '14 at 08:41
  • 2
    @NguyenMinhBinh the question and the answer here are about the ORM framework called `Hibernate`, not about hibernating other apps or the phone itself. – stuXnet Jan 27 '15 at 09:51