We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When model has a field of byte[], though the values seem correctly persisted, data browser shows blank for the field
Basic info (please complete the following information):
To Reproduce Steps to reproduce the behavior:
Expected behavior the values should be shown
The text was updated successfully, but these errors were encountered:
Confirmed, thanks for reporting!
The values are actually returned from the database, but not in a format that can be displayed. Example:
http://localhost:8090/api/query?entity_name=Note&offset=0&limit=50 { "data": { "offset": 0, "fields": ["id", "text", "date", "bytes", "authorId"], "count": 3, "objects": [ ["1", "This is a note for Bob", "1638789338241", "\u0001\u0002\u0003", "1"], ["2", "Write a demo app for ObjectBox", "1638789338242", "\u0001\u0002\u0003", "1"], ["3", "Thanks for your note, Alice", "1638789338242", "\u0001\u0002\u0003", "2"] ] } }
Sorry, something went wrong.
This is fixed in the 3.1.0 release. Byte arrays are now shown as Base64 encoded values.
3.1.0
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
When model has a field of byte[], though the values seem correctly persisted, data browser shows blank for the field
Basic info (please complete the following information):
To Reproduce
Steps to reproduce the behavior:
Expected behavior
the values should be shown
The text was updated successfully, but these errors were encountered: