~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

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;
41
42
  drizzled::execute_string_t to_execute;
42
43
 
43
44
  bool parseVariable(void);
44
45
 
45
46
  bool runStatement(plugin::NullClient *client, const std::string &arg);
46
47
 
 
48
  bool execute_shell();
47
49
public:
48
 
  Execute(Session *in_session, drizzled::execute_string_t, bool is_quiet_arg, bool is_concurrent);
 
50
  Execute(Session *in_session, drizzled::execute_string_t, bool is_quiet_arg, bool is_concurrent, bool should_wait);
49
51
 
50
52
 
51
53
  bool execute();