Valery Kulikov

Results 16 comments of Valery Kulikov

But how? Constructon like this ``` Integer i = storIoSqlite .get() .object(Integer.class) .withQuery(RawQuery.builder() .query("SELECT COUNT(*) FROM some_table WHERE some_field=some_value) .build() ) .prepare() .executeAsBlocking(); ``` fails with **Caused by: java.lang.IllegalStateException: This...

I really really have no idea how perform this primitive operation as COUNT with this sophisticated library. It is terrible to imagine how to implement min()/max()... or get some columns......

Thanks to @nikitin-da problem was gone. Maybe this solution should be in documentation. > What's the problem with cursor?

well, ok. i`d make PR for sample or readme with this 'use case'. But i have another case: how can i perform complex update in one transaction, such as (pseudocode):...

Here is the change i made to fix this problem: **MviBasePresenter.java** ```java Subject intentRelay = ReplaySubject.create(); //Subject intentRelay = UnicastSubject.create(); ``` this was inserted on **513d1e9 ("use unicast subject", 2018-04-08)**