* Fix bug ID #33714: do not allow string conversions on blob fields

git-svn-id: trunk@39326 -
This commit is contained in:
michael 2018-06-28 10:08:53 +00:00
parent 398ab09c8d
commit 6b775a2090

View File

@ -1023,6 +1023,8 @@ begin
end;
ftFmtBCD:
s := BCDToStr(AParams[i].AsFMTBCD, FSQLFormatSettings);
ftBlob, ftGraphic:
s := AParams[i].AsBlob;
else
s := GetAsString(AParams[i]);
end; {case}