thx
wie mache ich das eigendlich wenn ich 2 tabellen in einer
DB ändern will...
SQL-Code:
with DataModule2.ADOQuery1 do
try
Active:=
false;
SQL.Clear;
SQL.
Add('
INSERT INTO Tabelle1 (feld1, Feld2) VALUE ("a", "b")');
SQL.
Add('
INSERT INTO Tabelle2 (feld1, Feld2) VALUE ("a", "b")');
ExecSQL;
DataModule2.ADOConnection1.CommitTrans;
except
on E:
Exception do DataModule2.ADOConnection1.RollbackTrans;
end;
...geht irgendwie nicht:
Zitat:
Im Projekt Datei_Filtern.exe ist eine
Exception der Klasse EOleException mit der Meldung 'Fehlendes Semikolon (;) am Ende der
SQL-Anweisung' aufgetreten.