aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/transaction-impl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/sqlite/transaction-impl.cxx')
-rw-r--r--odb/sqlite/transaction-impl.cxx25
1 files changed, 18 insertions, 7 deletions
diff --git a/odb/sqlite/transaction-impl.cxx b/odb/sqlite/transaction-impl.cxx
index 9497c0a..1975308 100644
--- a/odb/sqlite/transaction-impl.cxx
+++ b/odb/sqlite/transaction-impl.cxx
@@ -67,10 +67,15 @@ namespace odb
void transaction_impl::
commit ()
{
- // Reset active and finilize uncached statements. Active statements
- // will prevent COMMIT from completing (write statements) or releasing
- // the locks (read statements). Finilization of uncached statements is
- // needed to release the connection.
+ // Invalidate query results.
+ //
+ connection_->invalidate_results ();
+
+ // Reset active statements. Active statements will prevent COMMIT
+ // from completing (write statements) or releasing the locks (read
+ // statements). Normally, a statement is automatically reset on
+ // completion, however, if an exception is thrown, that may not
+ // happen.
//
connection_->clear ();
@@ -84,9 +89,15 @@ namespace odb
void transaction_impl::
rollback ()
{
- // Reset active and finilize uncached statements. Active statements
- // will prevent ROLLBACK from completing. Finilization of uncached
- // statements is needed to release the connection.
+ // Invalidate query results.
+ //
+ connection_->invalidate_results ();
+
+ // Reset active statements. Active statements will prevent ROLLBACK
+ // from completing (write statements) or releasing the locks (read
+ // statements). Normally, a statement is automatically reset on
+ // completion, however, if an exception is thrown, that may not
+ // happen.
//
connection_->clear ();