From 2a281b6be66ec424ab991bade7bec639d875a40a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Van=20Canneyt?= Date: Thu, 21 Dec 2023 13:31:58 +0100 Subject: [PATCH] * Guard against the case connection is nil when closing datasets --- packages/fcl-db/src/sqldb/sqldb.pp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/fcl-db/src/sqldb/sqldb.pp b/packages/fcl-db/src/sqldb/sqldb.pp index 4899246071..c8ff3f31c8 100644 --- a/packages/fcl-db/src/sqldb/sqldb.pp +++ b/packages/fcl-db/src/sqldb/sqldb.pp @@ -2518,13 +2518,21 @@ Const var Q : TSQLQuery; + C : TSQLConnection; begin Q:=DS as TSQLQuery; if not (sqoKeepOpenOnCommit in Q.Options) then inherited CloseDataset(Q,InCommit); - if UnPrepOptions[InCommit] in SQLConnection.ConnOptions then - Q.UnPrepare; + C:=SQLConnection; + 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; procedure TSQLTransaction.Commit;