ormlite-android-extras
ormlite-android-extras copied to clipboard
ORMLite Extras for Android
Hi! Thanks for such a great library! :-) I'm trying to use your OrmLiteCursorAdapter. It looks good for lists with one type of contents. For example, if we have just...
If I call dao.callBatchTasks(), I expect to be able to perform a bunch of updates all at once in order to improve performance. It appears that notifyContentChanged is being called...
Would you object if someone took the code from ormlite-android-extras and packaged it up into a patch that Gray could evaluate for inclusion in OrmLite? Ormlite by itself is currently...
It would be great to use this project, but the current licensing is unclear. If you could release the code under something like Apache2, I'm sure you'd see more people...
oss.sonatype.org https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide would be great, but if that's too much overhead, a quick fix is to do something like http://stackoverflow.com/questions/14013644/hosting-a-maven-repository-on-github
I was trying to use to with Android 2.2 and I had to patch the `loadInBackground` for the class `OrmliteCursorLoader` replacing that code : ``` java /* Runs on a...
Hello, I noticed that performance is improved in cursor by using caching `AndroidResult` in `CursorAdapter` ``` java public abstract class OrmliteCursorAdapter extends CursorAdapter { // Stripped code... private AndroidDatabaseResults results;...
The current mechanism for notifying Loaders should be implemented by a observable Dao instead of having the special handling just for Android Loaders.