aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/transaction-impl.cxx
blob: 2d2a9880393a91e3dfe91a5caa5f85bd5135c3a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// file      : odb/pgsql/transaction-impl.cxx
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#include <cassert>

#include <libpq-fe.h>

#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>

namespace odb
{
  namespace pgsql
  {
    transaction_impl::
    transaction_impl (database_type& db)
        : odb::transaction_impl (db), connection_ (db.connection ())
    {
      PGresult* r (PQexec (connection_->handle (), "begin"));

      if (!r)
        translate_result_error (*connection_);

      ExecStatusType s (PQresultStatus (r));

      if (PGRES_COMMAND_OK != s)
        translate_result_error (*connection_, r, s);
    }

    transaction_impl::
    ~transaction_impl ()
    {
    }

    void transaction_impl::
    commit ()
    {
      // connection_->clear ();

      PGresult* r (PQexec (connection_->handle (), "commit"));

      if (!r)
        translate_result_error (*connection_);

      ExecStatusType s (PQresultStatus (r));

      if (PGRES_COMMAND_OK != s)
        translate_result_error (*connection_, r, s);

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

    void transaction_impl::
    rollback ()
    {
      // connection_->clear ();

      PGresult* r (PQexec (connection_->handle (), "rollback"));

      if (!r)
        translate_result_error (*connection_);

      ExecStatusType s (PQresultStatus (r));

      if (PGRES_COMMAND_OK != s)
        translate_result_error (*connection_, r, s);

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