mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 00:47:52 +02:00
TSQLConnection.DoInternalDisconnect: safe with Assigned(FStatements) - like TDatabase.CloseDataSets etc.
This commit is contained in:
parent
cd909ec2bc
commit
8bd9651abd
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user