You are not logged in.
Pages: 1
Hello,
I try mormot.db.sql.ibx.pas and I think I found a bug:
in procedure TSqlDBIbxStatement.ColumnToJson(Col: integer; W: TJsonWriter);
current code:
SQL_BLOB:
begin
if ForceBlobAsNull then
W.AddNull
else
beginbut this works:
SQL_BLOB:
begin
if dsfForceBlobAsNull in fFlags then
W.AddNull
else
beginCan someone confirm my change and maybe change the repository?
Best regards
Pages: 1