We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Does jaguar_orm support creating field of type BLOB for SQFlite?
jaguar_orm
When trying to generate the bean using the following model
@Column() Uint8List data;
I got the following error:
Field protobuffer has exception: Exception: Field type not recognised: Uint8List! #0 Field.vType (package:jaguar_orm_gen/src/model/model.dart:21:7)
From sqflite package, BLOB is a supported type which corresponds to Dart type: Uint8List.
Dart type: Uint8List
I didn't find anything in the jaguar_query_sqflite package saying that this type is not supported.
Is there a specific annotation for type Uint8List?
Uint8List
Thanks in advance
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Does
jaguar_orm
support creating field of type BLOB for SQFlite?When trying to generate the bean using the following model
I got the following error:
Field protobuffer has exception: Exception: Field type not recognised: Uint8List! #0 Field.vType (package:jaguar_orm_gen/src/model/model.dart:21:7)
From sqflite package, BLOB is a supported type which corresponds to
Dart type: Uint8List
.I didn't find anything in the jaguar_query_sqflite package saying that this type is not supported.
Is there a specific annotation for type
Uint8List
?Thanks in advance
The text was updated successfully, but these errors were encountered: