~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/rollback.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-08 04:22:33 UTC
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090808042233-q0z88zc490z3f3r7
Renamed the Command class to be Statement. Renamed the command directory to
statement and also the command header file to statement. Updated various
source files to reflect this renaming.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <drizzled/statement.h>
25
25
 
 
26
class Session;
 
27
 
26
28
namespace drizzled
27
29
{
28
 
class Session;
29
 
 
30
30
namespace statement
31
31
{
32
32
 
40
40
 
41
41
  bool execute();
42
42
 
43
 
  /* Was the CHAIN option using in COMMIT/ROLLBACK? */
44
 
  bool tx_chain;
45
 
 
46
 
  /* Was the RELEASE option used in COMMIT/ROLLBACK? */
47
 
  bool tx_release;
 
43
private:
 
44
  static const enum enum_sql_command type= SQLCOM_ROLLBACK;
48
45
};
49
46
 
50
 
} /* namespace statement */
 
47
} /* end namespace statement */
51
48
 
52
 
} /* namespace drizzled */
 
49
} /* end namespace drizzled */
53
50
 
54
51
#endif /* DRIZZLED_STATEMENT_ROLLBACK_H */