~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/execute.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-10 09:54:42 UTC
  • mto: (2430.1.6 rf)
  • mto: This revision was merged to the branch mainline in revision 2436.
  • Revision ID: olafvdspek@gmail.com-20111010095442-cq0a0g8mi5wunf6p
Use assign(), data() and size()

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
  bool parseVariable(void);
36
36
 
37
 
  bool runStatement(plugin::NullClient *client, const std::string &arg);
 
37
  bool runStatement(plugin::NullClient&, const std::string&);
38
38
 
39
39
  bool execute_shell();
40
40
public:
47
47
} /* namespace statement */
48
48
 
49
49
} /* namespace drizzled */
50