TSQLConnection.DoInternalDisconnect: safe with Assigned(FStatements) - like TDatabase.CloseDataSets etc.

This commit is contained in:
Ondrej Pokorny 2023-10-16 11:43:23 +02:00
parent cd909ec2bc
commit 8bd9651abd

View File

@ -1489,14 +1489,17 @@ Var
L : TList;
begin
L:=FStatements.LockList;
try
For I:=0 to L.Count-1 do
TCustomSQLStatement(L[i]).Unprepare;
L.Clear;
finally
FStatements.UnlockList;
end;
If Assigned(FStatements) then
begin
L:=FStatements.LockList;
try
For I:=0 to L.Count-1 do
TCustomSQLStatement(L[i]).Unprepare;
L.Clear;
finally
FStatements.UnlockList;
end;
end;
end;
procedure TSQLConnection.StartTransaction;