(Gast)
n/a Beiträge
|
Re: Datensatz löschen(ADS-Table)
15. Feb 2004, 00:09
Wie wär's mit SQL?
Beispiel:
Delphi-Quellcode:
With Query Do
Begin
SQL.Text :=
' DELETE FROM Tabelle' + #10 +
' WHERE Feld1 = :i_F1 And' + #10 +
' Feld3 = :i_F2';
Prepared := true;
Params.ParamByName(' i_F1').Value := ' Hallo';
Params.ParamByName(' i_F2').Value := 1;
// Hier kein "Query.Open"
// da es sich bei UPDATE, INSERT & DELETE um DML handelt,
// wird keine Ergebnismenge geliefert (auch keine leere)
ExecSQL;
End;
|
|
Zitat
|