aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle/transaction-impl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/oracle/transaction-impl.cxx')
-rw-r--r--odb/oracle/transaction-impl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/odb/oracle/transaction-impl.cxx b/odb/oracle/transaction-impl.cxx
index e46aac1..a22d5c7 100644
--- a/odb/oracle/transaction-impl.cxx
+++ b/odb/oracle/transaction-impl.cxx
@@ -106,7 +106,7 @@ namespace odb
OCI_TRANS_NEW);
if (s == OCI_ERROR || s == OCI_INVALID_HANDLE)
- translate_error (err, s);
+ translate_error (err, s, connection_.get ());
}
void transaction_impl::
@@ -123,7 +123,7 @@ namespace odb
OCI_DEFAULT));
if (s == OCI_ERROR || s == OCI_INVALID_HANDLE)
- translate_error (connection_->error_handle (), s);
+ translate_error (connection_->error_handle (), s, connection_.get ());
}
void transaction_impl::
@@ -140,7 +140,7 @@ namespace odb
OCI_DEFAULT));
if (s == OCI_ERROR || s == OCI_INVALID_HANDLE)
- translate_error (connection_->error_handle (), s);
+ translate_error (connection_->error_handle (), s, connection_.get ());
}
}
}