Delphi Examples: DbiTimeStampEncode

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi Examples: DbiTimeStampEncode

Return to chapter overview

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;