ORM for SQLite

Costas

Administrator
Staff member
Allows you to save and retrieve SQLite database records without ever writing a single SQL statement. Each database record is wrapped neatly into a class with methods like save()and delete().

https://github.com/pardom/ActiveAndroid

--

Is a simple ORM persistence framework for your Android applications, providing an easy to use, almost-zero-config way to handle model persistence without ever having to deal with Android's built-in database interfaces.

https://github.com/roscopeco/ormdroid

--

Is intended as an easy way to create a basic object store with SQLite.

https://code.google.com/p/storm-gen   ---  http://turbomanage.wordpress.com/2012/12/11/storm-preview/

 

 

 

tips : 
  • compile it using ant, use it in eclipse
  • context.deleteDatabase(dbasefilename);
 
Top