~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement.h

  • Committer: Lee Bieber
  • Date: 2011-01-15 03:08:27 UTC
  • mfrom: (1994.5.38 doc)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: kalebral@gmail.com-20110115030827-0h9s99kiknrmt9ti
Merge Stewart - some documentation clean up

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
{
46
46
public:
47
47
  Statement(Session *in_session) : 
48
 
    _session(in_session)
 
48
    session(in_session)
49
49
  {}
50
50
 
51
51
  virtual ~Statement() {}
57
57
   */
58
58
  virtual bool execute()= 0;
59
59
 
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
60
  Session *getSession()
68
61
  {
69
 
    return _session;
70
 
  }
71
 
 
72
 
  Session *getSession() const
73
 
  {
74
 
    return _session;
 
62
    return session;
75
63
  }
76
64
 
77
65
  virtual bool isShow() { return false; }
78
66
 
79
 
private:
 
67
protected:
 
68
 
80
69
  /**
81
70
   * A session handler.
82
71
   */
83
 
  Session *_session;
 
72
  Session *session;
84
73
};
85
74
 
86
75
} /* namespace statement */