views:

309

answers:

2

I'm looking for a very simple ORM framework working on Android for sqlite. I've been testing activeAndroid but none of the example could ever build on Eclipse. By the way, how do guys implements a "many to many" relationship in sqlite for android ? How do you reflect the cascade regarding deletion of rows and guarantee the database integrity ?

+1  A: 

Try SQLiteGen. It's not as feature-rich as hibernate, but you can generate some simple ORM classes with it in Eclipse.

Hope that helps!

Ryan Hayes
+1  A: 

ORMLite has recently released the 3.2 version which makes calls to the native Android OS database APIs to support its ORM functionality. Love to get some feedback from more Android developers.

Gray