Nachdem du mich ja so erfolgreich ignoriert hast versuche ich es jetzt nochmal.
Datensatz schreiben...
Delphi-Quellcode:
ADOQuery.SQL.Text:=
'INSERT INTO tabelle (id, datum) VALUES (1, Date())';
ADOQuery.ExecSQL;
Datensatz ändern...
Delphi-Quellcode:
ADOQuery.SQL.Text:=
'UPDATE tabelle SET datum = Date() WHERE id = 10';
ADOQuery.ExecSQL;
Das funktioniert mit
Access wunderbar.