Releases: sockeqwe/sqlbrite-dao
Releases · sockeqwe/sqlbrite-dao
0.6.1
- Updated to sqlbrite 0.6.3
- Fixed #40 caused by different versions of java poet
- Support for foreign key #38
0.6.0
- Updated to
sqlbrite 0.6.0
which now requires a Rx Scheduler for emiting items from querys (and triggers). Per default Schedulers.io()
will be used. You can override this with DaoManager.with(context).scheduler( ... ).build()
- Fixed #27 (fields of boolean type in kotlin)
0.5.0
- Updated to latest SQLBrite version
0.5.0
- DaoManager.Builder to instantiate a DaoManager
- Fix #23 by using DefaultDatabaseErrorHandler as default error handler since
0.4.1
- Updated to
sqlbrite 0.4.1
- support for
boolean
type (@Column
)
- Initial kotlin support (data classes not supported yet)
0.4.0
- Updated to SQLBrite 0.4.0
- New Query builder
@ColumnAnnotation
can specify if exception should be thrown on column index not found
- Annotation Processor now generates a RxJava
Func1<Cursor, MyObject>
(as private field) to use it on SQLBrite's QueryObservable
mapping operations like mapToList(Func1<Cursor, MyObject>)
etc.