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
Last edited by WLemmy (Yesterday 17:31:49)
Offline
Yes it is correct fix, I will prepare pull request
Offline
Pull request fix blob and datetime types. Also fix small memory leak of IBX cached interface.
https://github.com/synopse/mORMot2/pull/488
Offline
Pages: 1