aboutsummaryrefslogtreecommitdiff
path: root/odb/mysql/transaction-impl.cxx
blob: 04493e66b35a42d2129d68702e88df0602b2433c (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
// file      : odb/mysql/transaction-impl.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#include <odb/mysql/details/config.hxx>

#ifdef _WIN32
#  include <winsock2.h>
#endif

#ifdef LIBODB_MYSQL_INCLUDE_SHORT
#  include <mysql.h>
#else
#  include <mysql/mysql.h>
#endif

#include <odb/mysql/database.hxx>
#include <odb/mysql/connection.hxx>
#include <odb/mysql/exceptions.hxx>
#include <odb/mysql/transaction-impl.hxx>

namespace odb
{
  namespace mysql
  {
    transaction_impl::
    transaction_impl (database_type& db)
        : odb::transaction_impl (db), connection_ (db.connection ())
    {
      MYSQL* h (connection_->handle ());

      if (mysql_real_query (h, "begin", 5) != 0)
        throw database_exception (h);
    }

    transaction_impl::
    ~transaction_impl ()
    {
    }

    void transaction_impl::
    commit ()
    {
      if (statement* a = connection_->active ())
        a->cancel ();

      MYSQL* h (connection_->handle ());

      if (mysql_real_query (h, "commit", 6) != 0)
        throw database_exception (h);

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

    void transaction_impl::
    rollback ()
    {
      if (statement* a = connection_->active ())
        a->cancel ();

      MYSQL* h (connection_->handle ());

      if (mysql_real_query (h, "rollback", 8) != 0)
        throw database_exception (h);

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