微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

postgresql的transaction

从odb的源码中看出了,其实和其它的数据库一样,也都是三条命令。


// file : odb/pgsql/transaction-impl.cxx

// copyright : copyright (c) 2009-2013 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file


#include <cassert>


#include <libpq-fe.h>


#include <odb/tracer.hxx>


#include <odb/pgsql/database.hxx>
#include <odb/pgsql/connection.hxx>
#include <odb/pgsql/error.hxx>
#include <odb/pgsql/exceptions.hxx>
#include <odb/pgsql/transaction-impl.hxx>
#include <odb/pgsql/auto-handle.hxx>


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_type&> (database_).connection ();
odb::transaction_impl::connection_ = connection_.get ();
}


{
odb::tracer* t;
if ((t = connection_->tracer ()) || (t = database_.tracer ()))
t->execute (*connection_,"BEGIN");
}


auto_handle<PGresult> h (PQexec (connection_->handle (),"begin"));


if (!h || PGRES_COMMAND_OK != PQresultStatus (h))
translate_error (*connection_,h);
}


void transaction_impl::
commit ()
{
// Invalidate query results.
//
connection_->invalidate_results ();


{
odb::tracer* t;
if ((t = connection_->tracer ()) || (t = database_.tracer ()))
t->execute (*connection_,"COMMIT");
}


auto_handle<PGresult> h (PQexec (connection_->handle (),"commit"));


if (!h || PGRES_COMMAND_OK != PQresultStatus (h))
translate_error (*connection_,h);


// Release the connection.
//
connection_.reset ();
}


void transaction_impl::
rollback ()
{
// Invalidate query results.
//
connection_->invalidate_results ();


{
odb::tracer* t;
if ((t = connection_->tracer ()) || (t = database_.tracer ()))
t->execute (*connection_,"ROLLBACK");
}

auto_handle<PGresult> h (PQexec (connection_->handle (),"rollback")); if (!h || PGRES_COMMAND_OK != PQresultStatus (h)) translate_error (*connection_,h); // Release the connection. // connection_.reset (); } } }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐