Access-Datumformat geht so:
Delphi-Quellcode:
Function AccessDate (aDate : TDateTime) : String;
Begin
Result := '#'+formatDateTime ('mm"/"dd"/"yyyy',aDate)+'#'
End;
Verwendung dann ohne Hochkomma, also einfach so:
SQL := 'Select * from Foo Where Date = '+AccessDate(Now);