-
-
Notifications
You must be signed in to change notification settings - Fork 369
New issue
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
BLOB Field in Activerecord #315
Comments
What is the blob encoding? |
blob encoding use default / none |
I cannot reproduce the issue - in all the samples the blob textual field is correctly handled. I've updated the sample |
oke, i'll check samples |
i used firebird 2.5.9 and DMVC Boron,
i create blob field in firebird ex:
create tableX (
id integer not null,
notes blob sub_type text
);
in active record entity class i use
Notes : String
whene i call rest from client, if blob field is empty, there no error, if blob field has any value, it generate error
"Exception Class Name : EEncodingError
Exception Message : No mapping for the Unicode character exists in the target multi-byte code page"
How to fix this problem?
or any oher idea to contain/load blob field in active record?
The text was updated successfully, but these errors were encountered: