~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement.h

  • Committer: Stewart Smith
  • Date: 2009-06-16 00:45:15 UTC
  • mto: (1119.2.6 merge)
  • mto: This revision was merged to the branch mainline in revision 1124.
  • Revision ID: stewart@flamingspork.com-20090616004515-bgr8e62psvn2820l
make snowman test not leave tables behind after running

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
21
21
#ifndef DRIZZLED_STATEMENT_H
22
22
#define DRIZZLED_STATEMENT_H
23
23
 
 
24
#include <drizzled/server_includes.h>
24
25
#include <drizzled/definitions.h>
25
26
#include <drizzled/error.h>
26
27
#include <drizzled/sql_parse.h>
27
28
#include <drizzled/sql_base.h>
28
29
#include <drizzled/show.h>
29
30
 
30
 
namespace drizzled
31
 
{
32
 
 
33
31
class Session;
34
32
class TableList;
35
33
class Item;
36
34
 
 
35
namespace drizzled
 
36
{
37
37
namespace statement
38
38
{
39
39
 
44
44
class Statement
45
45
{
46
46
public:
47
 
  Statement(Session *in_session) : 
48
 
    _session(in_session)
 
47
  Statement(Session *in_session,
 
48
            enum enum_sql_command in_type)
 
49
    : 
 
50
      session(in_session),
 
51
      type(in_type)
49
52
  {}
50
53
 
51
54
  virtual ~Statement() {}
57
60
   */
58
61
  virtual bool execute()= 0;
59
62
 
60
 
  /* True if can be in transaction. Currently only DDL is not.
61
 
     This should go away when DDL commands are within transactions. */
62
 
  virtual bool isTransactional()
63
 
  {
64
 
    return false;
65
 
  }
66
 
 
67
 
  Session *getSession()
68
 
  {
69
 
    return _session;
70
 
  }
71
 
 
72
 
  Session *getSession() const
73
 
  {
74
 
    return _session;
75
 
  }
76
 
 
77
 
  virtual bool isShow() { return false; }
78
 
 
79
 
private:
 
63
protected:
 
64
 
80
65
  /**
81
66
   * A session handler.
82
67
   */
83
 
  Session *_session;
 
68
  Session *session;
 
69
 
 
70
  enum enum_sql_command type;
84
71
};
85
72
 
86
 
} /* namespace statement */
 
73
} /* end namespace statement */
87
74
 
88
 
} /* namespace drizzled */
 
75
} /* end namespace drizzled */
89
76
 
90
77
#endif /* DRIZZLED_STATEMENT_H */