Registriert seit: 2. Mär 2004
5.508 Beiträge
Delphi 5 Professional
|
Re: Double und TDateTime 'delokalisiert' speichern
3. Mai 2005, 18:14
Kuck mal da:
http://www.hackcraft.net/web/datetime/#xsd
oder hier wäre die orginale, offizielle Quelle:
http://www.w3.org/TR/xmlschema-2/
demnach
Delphi-Quellcode:
function XMLDatetime(d:TDateTime):string;
begin
result := FormatDateTime('yyyy"-"mm"-"dd"T"hh":"nn":"ss', d);
end;
Andreas
|