Habe es jetzt so gelöst:
Delphi-Quellcode:
FDQuery1.Close;
if (FDQuery1.Command.State = csPrepared) then
FDQuery1.Unprepare;
if (FDQuery1.Command.State <> csInactive) then
begin
FDQuery1.Connection.AbortJob(true);
FDQuery1.Connection.Close;
end;
Scheint erst ein mal zu gehen. Danke.