Uwe (ObjectBox)

Results 521 comments of Uwe (ObjectBox)

Soon, we still are doing fixes and want to clean it up a little before we show it to anybody. 😀 -ut

The team is currently focused on https://github.com/objectbox/. It's still hard to find time for greenDAO. I hope at least the source code will be made available to make greenDAO more...

Just to note: with greenDAO 3 it is easy to have a custom constructor (annotate the generated one with `@Keep`) where you could set your default values. You may also...

The errors `database is locked (code 5): , while compiling: PRAGMA journal_mode` and `table "DRAFT_ENTITY" already exists (Sqlite code 1 SQLITE_ERROR), (OS error - 11:Try again)` indicate that the database...

The error message indicates that you have many open `Cursor` classes: `# Open Cursors=363 (# cursors opened by this proc=363)`. This likely lead to the out of memory issue. Check...

Alright, then are you calling `.unique()` inside a loop or many times at once, for example using multiple threads? In that case it is recommended to limit the number of...

I came across [a tip from Stack Overflow](https://stackoverflow.com/a/28155638/9187282) that may help you find the cause. -ut

@boboqun Maybe there are too many open Cursors or the number of results for this query is too large? Edit: Stack Overflow also suggests too many open Cursors: https://stackoverflow.com/a/15536202/9187282 Maybe...

Can't really tell what is going wrong without the exception message, sorry.

Technically we only should have to change the greenDAO Gradle Plugin from parsing/generating at level 1.7 (Java 7) to level 1.8 (Java 8). Not sure if any other changes would...