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

namespace odb
{
  inline database::
  database ()
  {
  }

  template <typename T>
  inline void database::
  erase (const T& obj)
  {
    erase<T> (object_traits<T>::id (obj));
  }

  template <typename T>
  inline result<T> database::
  query (bool cache)
  {
    return query (odb::query<T> (), cache);
  }

  template <typename T>
  inline result<T> database::
  query (const char* q, bool cache)
  {
    return query (odb::query<T> (q), cache);
  }

  template <typename T>
  inline result<T> database::
  query (const std::string& q, bool cache)
  {
    return query (odb::query<T> (q), cache);
  }
}