forked from androidannotations/androidannotations
-
Notifications
You must be signed in to change notification settings - Fork 0
Ormlite
Damien edited this page Oct 7, 2013
·
9 revisions
Since AndroidAnnotations 2.7
Thanks to Johan Poirier, you may inject your OrmLite DAOs with the @OrmLiteDao annotation.
Note : The minimum version required of ORMLite is 4.21
The @OrmLiteDao has two mandatory attributes :
-
helpershould hold the class of your database helper (which should extendcom.j256.ormlite.android.apptools.OrmLiteSqliteOpenHelper) -
modelshould point to the model class that the DAO relates to. It should match the type of the first generic parameter of your Dao
Usage:
@EActivity
public class MyActivity extends Activity {
// UserDao is a Dao<User, Long>
@OrmLiteDao(helper = DatabaseHelper.class, model = User.class)
UserDao userDao;
@OrmLiteDao(helper = DatabaseHelper.class, model = Car.class)
Dao<Car, Long> carDao;
}Since AndroidAnnotations 3.0
Before 3.0, only subclasses of Dao could be annotated with @OrmLiteDao.
Now we also handle subclasses of RuntimeExceptionDao
AndroidAnnotations was created by Pierre-Yves Ricau and is sponsored by eBusinessInformations.
09/11/2014 The 3.2 release is out !
- Get started!
- Download
- Cookbook, full of recipes
- Customize annotation processing
- List of all available annotations
- Release Notes
- Examples
- Read the FAQ
- Join the Mailing list
- Create an issue
- Tag on Stack Overflow