You are not logged in.
eg.
TSQLTouZiZH = class(TSQLRecord)
private
F账号: RawUTF8; //账号
F账户名: RawUTF8; //账户名
F开户日期: TDateTime; //开户日期
published
property 账号: RawUTF8 index 20 read F账号 write F账号;
property 账户名: RawUTF8 index 10 read F账户名 write F账户名;
property 开户日期: TDateTime read F开户日期 write F开户日期;
end;
by this way, the ORM's CreateAndFillPrepare function is not work. the code is :
ent: TSQLTouZiZH;
ent := TSQLTouZiZH.CreateAndFillPrepare(aClient,'*');
I step into the function:
aTable := aClient.MultiFieldValues(RecordClass,aCustomFieldsCSV,aSQLWhere);
that the aTable is nil.
How I do for this ? think you!
Offline
My Compiler is Delphi 10.
Offline
all right, I understand.thank you AB.
Offline