From 8112bd0febcfa1e3a76e0d03363facbefc3822f7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 15 Oct 2012 13:17:30 +0200 Subject: Implement early connection release --- odb/sqlite/transaction-impl.cxx | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) (limited to 'odb/sqlite/transaction-impl.cxx') 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 (); -- cgit v1.1