// file : odb/pgsql/transaction-impl.cxx // author : Constantin Michael // copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include #include #include #include #include #include #include #include namespace odb { namespace pgsql { transaction_impl:: transaction_impl (database_type& db) : odb::transaction_impl (db) { } transaction_impl:: transaction_impl (connection_ptr c) : odb::transaction_impl (c->database (), *c), connection_ (c) { } 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 (); } auto_handle h (PQexec (connection_->handle (), "begin")); if (!h || PGRES_COMMAND_OK != PQresultStatus (h)) translate_error (*connection_, h); } void transaction_impl:: commit () { auto_handle h (PQexec (connection_->handle (), "commit")); if (!h || PGRES_COMMAND_OK != PQresultStatus (h)) translate_error (*connection_, h); } void transaction_impl:: rollback () { auto_handle h (PQexec (connection_->handle (), "rollback")); if (!h || PGRES_COMMAND_OK != PQresultStatus (h)) translate_error (*connection_, h); } } }