Registriert seit: 17. Sep 2006
Ort: Barchfeld
27.619 Beiträge
Delphi 12 Athens
|
AW: Find all the records in the table and change the text
25. Jan 2013, 11:15
I would prefer to use a query instead of a table and change the records by SQL.
Delphi-Quellcode:
Query.Close;
Query.SQL.Text := ' UPDATE Tablename SET Permission = :new WHERE Permission = :old';
Query.ParamByName(' new').Value := Edit2.Text;
Query.ParamByName(' old').Value := Edit1.Text;
Query.ExecSQL;
Detlef "Ich habe Angst vor dem Tag, an dem die Technologie unsere menschlichen Interaktionen übertrumpft. Die Welt wird eine Generation von Idioten bekommen." (Albert Einstein)
Dieser Tag ist längst gekommen
|