1

I am looking to find a good ORM tool for android. Please give me your suggestions.

NrNazifi
  • 1,621
  • 3
  • 25
  • 36
DuyguK
  • 4,250
  • 9
  • 33
  • 46
  • possible duplicate of [Any Good ORM tools for Android development?](http://stackoverflow.com/questions/371538/any-good-orm-tools-for-android-development) – Gray Feb 15 '12 at 18:11

2 Answers2

2

ORMLite is one known tool for android ORM. Here is site with couple of examples.

kosa
  • 65,990
  • 13
  • 130
  • 167
  • i found some tools but i think ormlite is most developed tool. – DuyguK Feb 15 '12 at 20:06
  • was greenDAO mong other tools you gone through ? i am a bit confused about selection b/w ORMlite and greenDAO :( – Shailendra Singh Rajawat Apr 05 '13 at 09:33
  • definitevely ORMLite over GreenDao i've been using greenDao for so long but it's not very sofisticated, ORMLite is a real ORM and works for big data greenDao is fast true but it's intended for small databases and doesn't make it easy to use joint and stuff plus .... – Driss Bounouar Apr 23 '13 at 11:21
1

Apache Cayenne has something called ROP that splits the ORM stack into server and client parts. The client part has been ported to Android, although currently you'd need to do some Java hacking to use it in the app, so it is not for everyone yet.

andrus_a
  • 2,528
  • 1
  • 16
  • 10