~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/execute.h

  • Committer: Patrick Crews
  • Date: 2010-12-07 20:02:50 UTC
  • Revision ID: gleebix@gmail.com-20101207200250-6a27jgqalgw5bsb5
Added disabled.def file to disable drizzleslap due to Bug#684269.  Need to skip for tarball release this round

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2010 Brian Aker
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; either version 2 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
17
 
 *  along with this program; if not, write to the Free Software
18
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 */
20
 
 
21
 
#ifndef DRIZZLED_EXECUTE_H
22
 
#define DRIZZLED_EXECUTE_H
23
 
 
24
 
namespace drizzled
25
 
{
26
 
 
27
 
class Execute
28
 
{
29
 
  bool wait;
30
 
  Session &_session;
31
 
 
32
 
public:
33
 
  Execute(Session&, bool wait_arg);
34
 
  ~Execute();
35
 
 
36
 
  void run(std::string &to_execute);
37
 
  void run(const char *arg, size_t length);
38
 
 
39
 
  Session &session()
40
 
  {
41
 
    return _session;
42
 
  }
43
 
 
44
 
  void setWait(bool arg= true)
45
 
  {
46
 
    wait= arg;
47
 
  }
48
 
 
49
 
private:
50
 
};
51
 
 
52
 
} /* namespace drizzled */
53
 
 
54
 
#endif /* DRIZZLED_EXECUTE_H */