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

#ifndef ODB_MYSQL_CONTEXT_HXX
#define ODB_MYSQL_CONTEXT_HXX

#include <string>

#include <odb/context.hxx>

namespace mysql
{
  struct sql_type
  {
    sql_type () : unsign (false), bounds (false) {}

    std::string type;
    bool unsign;
    bool bounds;
    unsigned int bounds_value; // MySQL max value is 2^32 - 1 (LONGBLOG/TEXT).
  };

  class context: public ::context
  {
  private:
    typedef ::context base_context;

    struct data: base_context::data
    {
    };

  private:
    data* data_;

  public:
    sql_type const&
    db_type (semantics::data_member&);

  public:
    context (std::ostream&, semantics::unit&, options_type const&);
    context (context&);
  };
}

#endif // ODB_MYSQL_CONTEXT_HXX