aboutsummaryrefslogtreecommitdiff
path: root/odb/statement.hxx
blob: 3cd5598d86a4032cb71baf546fcf83dd48e40102 (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
// file      : odb/statement.hxx
// copyright : Copyright (c) 2005-2012 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_STATEMENT_HXX
#define ODB_STATEMENT_HXX

#include <odb/pre.hxx>

#include <odb/forward.hxx> // connection

#include <odb/details/export.hxx>
#include <odb/details/shared-ptr.hxx>

namespace odb
{
  class LIBODB_EXPORT statement: public details::shared_base
  {
  private:
    statement (const statement&);
    statement& operator= (const statement&);

  public:
    typedef odb::connection connection_type;

    virtual const char*
    text () const = 0;

    virtual connection_type&
    connection ()  = 0;

    virtual
    ~statement () = 0;

    // Statement caching status.
    //
  public:
    bool
    cached () const
    {
      return cached_;
    }

    virtual void
    cached (bool);

  protected:
    statement (): cached_ (false) {}

    bool cached_;
  };
}

#include <odb/post.hxx>

#endif // ODB_MYSQL_STATEMENT_HXX