Hallo,
noch eine gern benutzte Möglichkeit ist diese:
Delphi-Quellcode:
begin
with ADOCommand do
begin
CommandText := 'INSERT INTO Bookmarks(displayName, pageAddress, description) '
+ 'VALUES(:displayName, :pageAddress, :description)';
Parameters.ParamValues['displayName'] := DisplayNameEdit.Text;
Parameters.ParamValues['pageAddress'] := PageAddressEdit.Text;
Parameters.ParamValues['description'] := DescriptionEdit.Text;
// ...
end;
end;
Freundliche Grüße