You are not logged in.
Pages: 1
I have an external DB and class
TSQLSKU = class(TSQLRecord)
private
FTitleLocal: RawUTF8;
published
property TitleLocal: RawUTF8 index 100 read FTitleLocal write FTitleLocal;
end;
Line
aSKU := TSQLSKU.CreateAndFillPrepare(Server, 'TitleLocal is null OR TitleLocal = ''''');
work correctly.
But line
aSKU := TSQLSKU.CreateAndFillPrepare(Server, '(TitleLocal is null) OR (TitleLocal = '''')');
does not work.
I think constructor TSynTableStatement.Create does not work properly.
Offline
OK. Thanks for reply.
Offline
Pages: 1