Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 387 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 387 Bytes

LikeOrm

Simple orm like lib for android

For implementation see LikeOrmExample.

Main points:

  • "database" model should be annotated by @Table

  • extend Database helper from com.github.nrudenko.orm.BaseSQLiteOpenHelper and fill method appendSchemas() with your db entities clases

  • install plugin OrmGeneratorPlugin.jar which will generate schemas for your db entities

......