aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/database.ixx
blob: f78d6591a2d7cd1d4b145454a9c4fd879807ad88 (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
// file      : odb/sqlite/database.ixx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

namespace odb
{
  namespace sqlite
  {
    inline connection_ptr database::
    connection ()
    {
      // Go through the virtual connection_() function instead of
      // directly to allow overriding.
      //
      return connection_ptr (
        static_cast<sqlite::connection*> (connection_ ()));
    }

    inline transaction_impl* database::
    begin ()
    {
      return connection ()->begin ();
    }

    inline transaction_impl* database::
    begin_immediate ()
    {
      return connection ()->begin_immediate ();
    }

    inline transaction_impl* database::
    begin_exclusive ()
    {
      return connection ()->begin_exclusive ();
    }
  }
}