Ich habe das Problem jetzt so gelöst:
Delphi-Quellcode:
// Wandelt einen String im Format "yyyy-mm-dd hh:mm:ss" in DateTime-Wert um
function SQLDateTimeStringToDateTime(const strSQLDateTime : String) : TDateTime;
begin
Result := StrToDateTime(copy(strSQLDateTime,9,2) + '.' + // Day
copy(strSQLDateTime,6,2) + '.' + // Month
copy(strSQLDateTime,0,4) + ' ' + // Year
copy(strSQLDateTime,12,8)) // Time
end;
Kennt jemand einen schnelleren/besseren Weg?
Gruß,
Steffen