|
<< Click to Display Table of Contents >> Delphi Examples: DbiTimeStampEncode |
![]() ![]()
|
Encode a TimeStamp variable from a DBIDATE and TIME variable.
This example uses the following input:
fDbiTimeStampEncode(MyDate, MyTime, TS);
The procedure is:
procedure fDbiTimeStampEncode(ADate: dbiDate; timeT: TIME; var timestampTS: TimeStamp);
begin
Check(DbiTimeStampEncode(ADate, timeT, timestampTS));
end;