-
Notifications
You must be signed in to change notification settings - Fork 0
Ormlite
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
Note : For getting and releasing the helper, we use the OpenHelperManager class, which cannot handle two different helpers at the same time. So if you are using multiple database helpers, be careful with OrmLiteDao annotations.
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;
}The @OrmLiteDao annotation can be used from within all enhanced components.
Since AndroidAnnotations 3.0
Before 3.0, only subclasses of Dao could be annotated with @OrmLiteDao.
Now we also handle subclasses of RuntimeExceptionDao
Since AndroidAnnotations 3.1
The parameter model is deprecated since AndroidAnnotations 3.1 because the model class is inferred from the class of the annotated field.
The parameter will be removed in a next major version of AndroidAnnotations.
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