~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.h

  • Committer: Marisa Plumb
  • Date: 2010-12-04 02:38:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1984.
  • Revision ID: marisa.plumb@gmail.com-20101204023829-2khzxh30wxi256db
updates to a few sql docs 

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
{
39
39
  bool is_quiet;
40
40
  bool is_concurrent;
41
 
  bool should_wait;
42
41
  drizzled::execute_string_t to_execute;
43
42
 
44
43
  bool parseVariable(void);
45
44
 
46
45
  bool runStatement(plugin::NullClient *client, const std::string &arg);
47
46
 
48
 
  bool execute_shell();
49
47
public:
50
 
  Execute(Session *in_session, drizzled::execute_string_t, bool is_quiet_arg, bool is_concurrent, bool should_wait);
 
48
  Execute(Session *in_session, drizzled::execute_string_t, bool is_quiet_arg, bool is_concurrent);
51
49
 
52
50
 
53
51
  bool execute();