mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 19:48:01 +02:00
* Guard against the case connection is nil when closing datasets
This commit is contained in:
parent
5f845aa8ff
commit
2a281b6be6
@ -2518,13 +2518,21 @@ Const
|
|||||||
|
|
||||||
var
|
var
|
||||||
Q : TSQLQuery;
|
Q : TSQLQuery;
|
||||||
|
C : TSQLConnection;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
Q:=DS as TSQLQuery;
|
Q:=DS as TSQLQuery;
|
||||||
if not (sqoKeepOpenOnCommit in Q.Options) then
|
if not (sqoKeepOpenOnCommit in Q.Options) then
|
||||||
inherited CloseDataset(Q,InCommit);
|
inherited CloseDataset(Q,InCommit);
|
||||||
if UnPrepOptions[InCommit] in SQLConnection.ConnOptions then
|
C:=SQLConnection;
|
||||||
Q.UnPrepare;
|
if C=Nil then
|
||||||
|
C:=Q.SQLConnection;
|
||||||
|
if Q.Prepared then
|
||||||
|
if not Assigned(C) then
|
||||||
|
// No database, we must unprepare...
|
||||||
|
Q.UnPrepare // Unprepare checks if there is still a cursor.
|
||||||
|
else if UnPrepOptions[InCommit] in C.ConnOptions then
|
||||||
|
Q.UnPrepare;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TSQLTransaction.Commit;
|
procedure TSQLTransaction.Commit;
|
||||||
|
Loading…
Reference in New Issue
Block a user