summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2019-01-28 15:44:36 +0100
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2019-01-29 18:06:34 +0100
commit9247233195996d82f3530fcef0310ccb6e1c2304 (patch)
tree14845889aa35610953eefe9291fc49eeb4f052b0 /connectivity
parent744eb9b35b2224d0134f492b4692c0d07bed2e96 (diff)
tdf#106463 set new firebird connections as autocommit by default
as per SDBC specifications Change-Id: I132a8e565468bcacf0fa5ee0dfb62bf0dd717e24 (cherry picked from commit e9e1813a6ebe6e3015e04347b15a18aebc4e0fa7) Change-Id: I4e95f45f2915613d9515c55e3fad60869feab1a2 Reviewed-on: https://gerrit.libreoffice.org/67046 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/firebird/Connection.cxx2
-rw-r--r--connectivity/source/drivers/firebird/Driver.cxx3
2 files changed, 1 insertions, 4 deletions
diff --git a/connectivity/source/drivers/firebird/Connection.cxx b/connectivity/source/drivers/firebird/Connection.cxx
index b7f1276a8d4f..ba2fba974d78 100644
--- a/connectivity/source/drivers/firebird/Connection.cxx
+++ b/connectivity/source/drivers/firebird/Connection.cxx
@@ -87,7 +87,7 @@ Connection::Connection()
, m_sFirebirdURL()
, m_bIsEmbedded(false)
, m_bIsFile(false)
- , m_bIsAutoCommit(false)
+ , m_bIsAutoCommit(true)
, m_bIsReadOnly(false)
, m_aTransactionIsolation(TransactionIsolation::REPEATABLE_READ)
#if SAL_TYPES_SIZEOFPOINTER == 8
diff --git a/connectivity/source/drivers/firebird/Driver.cxx b/connectivity/source/drivers/firebird/Driver.cxx
index 199529016995..8e81ae9ae9b8 100644
--- a/connectivity/source/drivers/firebird/Driver.cxx
+++ b/connectivity/source/drivers/firebird/Driver.cxx
@@ -181,9 +181,6 @@ Reference< XConnection > SAL_CALL FirebirdDriver::connect(
Reference< XConnection > xCon = pCon;
pCon->construct(url, info);
- if (url == "sdbc:embedded:firebird")
- pCon->setAutoCommit(true);
-
m_xConnections.push_back(WeakReferenceHelper(*pCon));
return xCon;