You are not logged in.
Pages: 1
Hello,
Below example fails using Delphi 12.
uses
mormot.core.json, mormot.core.base;
type TRec = packed record id: Integer; atime: TTime; end;
procedure TForm1.FormCreate(Sender: TObject);
const cData = '{id:123,atime:"15:30"}';
var LRec: TRec;
begin
if not mormot.core.json.RecordLoadJson(LRec, RawUtf8(cData), TypeInfo(TRec)) then
ShowMessage('not ok')
else
ShowMessage('deserialize completed');
end;
I know I can use TDateTime instead. Just asking for convenience. Is it possible to support TTime data type?
Thank you for your consideration.
Regards,
Ertan
Offline
Pages: 1