Uwe - ObjectBox

Results 467 comments of Uwe - ObjectBox

When building a query add `.distinct()`. http://greenrobot.org/files/greendao/javadoc/current/org/greenrobot/greendao/query/QueryBuilder.html#distinct--

If I understand correctly what you want is like SQL GROUP BY? greenDAO is an opinionated library which sticks to an object relational mapping approach. Hence it does not support...

Well, make sure your table has a `SONG_ID` column. Or you can specify the name a class field should have using `@Property(nameInDb = "SONG_ID")`. http://greenrobot.org/greendao/documentation/modelling-entities/#Basic_properties -- [Check out ObjectBox](https://objectbox.io), our...

Store the child. Set the child on the parent. Store the parent. There are some examples: https://github.com/greenrobot-team/greenrobot-examples/blob/master/greendao/app/src/main/java/com/example/greendao/MainActivity.java -Uwe -- [Check out ObjectBox](https://objectbox.io), our new fast, easy to use database!

The stack trace clearly suggests otherwise (no implementation for a native method found within the `net.sqlcipher` package). Can you check that the native SQLCipher matches their Java API? Otherwise not...

I suggest to stay calm and read the docs. http://greenrobot.org/greendao/documentation/relations/ -Uwe

We are currently tracking a change to set offset and limit while building the query, instead of when calling `find`. See https://github.com/objectbox/objectbox-java/issues/303 -ut

Thanks for bringing this to our attention. Notes: - Gradle support for the Java module system is in 4.6 nightlies, so not stable, yet. - This has nothing to do...

Yes, as far as I can tell. - So to do this our Java and Android libraries should not ship code in the same package, which is disallowed with the...

No updates because there are no updates :)