Hi ho!
Nehmen wir an, du hast eine funktionsfähige
DB-Connection und eine Transaction die mit deinem FibQuery und der
DB-Verknüpft ist. Dann ist die grobe Schrittfolge wie folgt:
Delphi-Quellcode:
DBConnection.Open;
Transaction.StartTransaction;
Query.Sql.Text:='
Bli bla ...';
Query.ExecQuery;
while not Query.Eof
do
begin
Query.Next;
end;
Query.Close;
Transaction.Commit;
//oder Rollback;
DBConnectionclose;
Ganz grob.