-
Any plans to have Rx Observable support?
-
I don't know if I am missing something but if I try to update a row with some columns as null, it doesn't seem to be reflected
-
It is just another suggestion from me.
Developers should consider using following libraries for cleaner code:
- [Retrofit](http://square.github.io/retrofit/) - A type-safe REST client for Android an…
-
-
Is this planned for SQLite (not ContentResolver)?
-
Hey guys,
I'm using RxJava to observe table changes. I've seen this exception when I'm making lots of inserts/updates in really quick succession.
```
java.lang.IllegalStateException: more items arr…
-
Using [this get resolver](https://github.com/pushtorefresh/storio/blob/master/storio-sample-app/src/main/java/com/pushtorefresh/storio/sample/db/resolvers/TweetWithUserGetResolver.java) with [this que…
-
Actually, it's just like:
``` java
storIOSQLite
.get()
.listOfObjects(User.class)
.withQuery(...)
.prepare()
.createObservable()
.take(1) // Operator Take will take one result and unsubsc…
-
Hello.
I have tried different libraries to work with a sqlite, but there is not the flexibility that I need.
Specifically I need to store a single entity in the two tables for a particular data cache.…
-
I am using RxJava. My query looks like this:
``` java
private Observable getFetchPhotosFromDatabaseObservable() {
return DatabaseModule.getStorIOSQLite()
.get().listOfObjects…