Uwe - ObjectBox

Results 429 comments of Uwe - ObjectBox

This is the SQLite command used: https://github.com/greenrobot/greenDAO/blob/0cce6c004181eeec9b900c9bd2ef47d7f0c23893/DaoCore/src/main/java/org/greenrobot/greendao/internal/TableStatements.java#L67 According to https://www.sqlite.org/lang_conflict.html this means if an entity/row with this key exists, it will be deleted first before the given entity/row is inserted.

Yes. Note some edge cases regarding queries and session caching. https://greenrobot.org/greendao/documentation/queries/#Executing_queries_in_multiple_threads https://greenrobot.org/greendao/documentation/sessions/

The greenDAO API is using a rather outdated version of the SQLite and SQLCipher APIs which did not support `onDowngrade()`, yet. A workaround is to write a custom open helper...

Maybe a caching issue. https://greenrobot.org/greendao/documentation/sessions/

Is this still an issue with the new `3.3.0` release? If yes, please provide a small example project so we can reproduce this.

Note: The first log only happens the first time a database is created using `OpenHelper`. The second log only happens in `DevOpenHelper`, which should be restricted to debug builds (a...

Please refer to https://developer.android.com/jetpack/androidx/migrate on how to use AndroidX with libraries that do not yet use the new imports. Keeping this open if we ever want to do a release...

@prgpascal As far as I know and based on a quick check, greenDAO does not use the Android support annotations. It uses its own `org.greenrobot.greendao.annotation.NotNull`. Maybe you add the Android...

Closing this then.

Whoops, this issue is about something else. Re-opening.