Einzelnen Beitrag anzeigen

hoika

Registriert seit: 5. Jul 2006
Ort: Magdeburg
8.276 Beiträge
 
Delphi 10.4 Sydney
 
#10

Re: timestamp welches format ?

  Alt 29. Mai 2007, 12:10
Hallo,

Delphi-Quellcode:
with frmmain.Actionquery do
begin
  SQL.Clear;
  SQL.Add('insert into webmaster_user');
  SQL.Add('(surname,prename,firma_id,created,user_group)');
  SQL.Add('values ');
  SQL.Add('(:surname,:prename,:firma_id,:created,:user_group)');

  ParamByName('surname').AsString:= frmNewVertriebsMa.txtNachname.Text;

  usw.

  ParamByName('created').AsDateTime:= Now;

  usw.

  ExecSQL;
end; { with frmmain.Actionquery do }
Heiko
Heiko
  Mit Zitat antworten Zitat