Zitat von
omata:
Delphi-Quellcode:
var TD:TTransactionDesc; (aus DBXpress)
begin
SQLConnection.StartTransaction(TD);
try
SQLConnection.ExecuteDirect('INSERT INTO ...');
SQLConnection.Commit(TD);
except
SQLConnection.Rollback(TD);
end;
end;
das führt zu folgendem Fehler:
"Ungültige Transaktions-ID"
Wie kann man die ID zuordnen? Ich hätte eigentlich gedacht, dass das die
DB für mich übernimmt, oder?