I have the following...
var
LCnn: TADOConnection;
qryGetData: TADOQuery;
begin
...
//build a connection string to a SQL Server 2008
...
qryGetData.Connection := LCnn;
qryGetData.SQL.Text := 'SELECT * FROM MYTABLE'
...
LDate := qryGetData.FieldByName('Date').AsDateTime; //Date its a datetime field in the table
end;
This works fine but, when "Date" field is NULL in some Pcs the LDate is 0 and in another is -36522.
Any idea??? Thanks!
edit:
the stranges behavior is
function TDateTimeField.GetAsDateTime: TDateTime;
begin
if not GetValue(Result) then Result := 0;
end;
in the firts case, GetValue result is false so GetAsDateTime result is 0, in the second case GetValue result is true so return -36522 (01/01/1800)
TDateTime
does not have a null value. Which means that if the database has null dates then your program is wrong. You need to accord such dates special treatment. Only callAsDateTime
once you have determined that the field is not null. If you encounter a null field, you need to handle that in some special way, but you cannot put a value in aTDateTime
that unambiguously means null since there is no such value.