// file : odb/sqlite/transaction-impl.cxx // copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include #include #include #include #include namespace odb { namespace sqlite { transaction_impl:: transaction_impl (database_type& db, lock l) : odb::transaction_impl (db), lock_ (l) { } transaction_impl:: transaction_impl (connection_ptr c, lock l) : odb::transaction_impl (c->database (), *c), connection_ (c), lock_ (l) { } transaction_impl:: ~transaction_impl () { } void transaction_impl:: start () { // Grab a connection if we don't already have one. // if (connection_ == 0) { connection_ = static_cast (database_).connection (); odb::transaction_impl::connection_ = connection_.get (); } statement_cache& sc (connection_->statement_cache ()); switch (lock_) { case deferred: { sc.begin_statement ().execute (); break; } case immediate: { sc.begin_immediate_statement ().execute (); break; } case exclusive: { sc.begin_exclusive_statement ().execute (); break; } } } void transaction_impl:: commit () { // 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 (); connection_->statement_cache ().commit_statement ().execute (); // Release the connection. // connection_.reset (); } void transaction_impl:: rollback () { // 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 (); connection_->statement_cache ().rollback_statement ().execute (); // Release the connection. // connection_.reset (); } } }