Uwe (ObjectBox)
Uwe (ObjectBox)
Closing this issue due to inactivity. :zzz: Feel free to comment with more details or submit a new issue.
@tomridder Thanks. Closing as the original poster did not reply for a long time.
@liuxinghj Is this the same issue as reported at https://github.com/greenrobot/greenDAO/issues/1110#issuecomment-1609252219?
@srdgame Maybe the [new experimental `maxDataSizeInKByte` property](https://objectbox.io/docfiles/java/current/io/objectbox/BoxStoreBuilder.html#maxDataSizeInKByte(long)) is helpful in this case.
@javaherisaber As @greenrobot notes: > Not sure how to tackle this, because not everybody does core.autocrlf = true (e.g. I do not). So even if we add a plugin config...
https://docs.objectbox.io/queries#reusing-queries-and-parameters now has a note about re-using queries across multiple threads. Also with the new `3.5.0` release, it is possible to create a copy of a `Query` using `copy()` to...
Closing this issue due to inactivity. :zzz: Feel free to comment with more details or submit a new issue.
@mimoccc I assume this happens when trying to use the ObjectBox plugin with the new Gradle plugin syntax? I also assume this happens when using version 3.6.0?
> Is there a reason why ObjectBox ignores the default value for new fields (which are not in the database) **There is a value** in the database for new properties:...
Update: using `List` for the `@Convert` `dbType` can never work due to how Java generics work (there is no such thing as `List.class` in Java). However, using `String[].class` should work....