~drizzle-trunk/drizzle/development

1976.7.2 by Brian Aker
Adding execute command to go along with main command.
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
2116.1.44 by David Shrewsbury
Fix include
24
#include <drizzled/visibility.h>
2116.1.24 by David Shrewsbury
Fix for visibility problems when plugin is compiled as dynamic.
25
1976.7.2 by Brian Aker
Adding execute command to go along with main command.
26
namespace drizzled
27
{
28
2116.1.13 by David Shrewsbury
Initial work to access result set.
29
namespace sql
30
{
31
  class ResultSet;
32
}
33
2116.1.24 by David Shrewsbury
Fix for visibility problems when plugin is compiled as dynamic.
34
class DRIZZLED_API Execute
1976.7.2 by Brian Aker
Adding execute command to go along with main command.
35
{
36
  bool wait;
37
  Session &_session;
38
39
public:
40
  Execute(Session&, bool wait_arg);
41
  ~Execute();
42
43
  void run(std::string &to_execute);
44
  void run(const char *arg, size_t length);
2116.1.17 by David Shrewsbury
Various fixes
45
  void run(std::string &execution_string, sql::ResultSet &result_set);
1976.7.2 by Brian Aker
Adding execute command to go along with main command.
46
47
  Session &session()
48
  {
49
    return _session;
50
  }
51
1976.7.4 by Brian Aker
Added WAIT to the execute() function.
52
  void setWait(bool arg= true)
53
  {
54
    wait= arg;
55
  }
56
1976.7.2 by Brian Aker
Adding execute command to go along with main command.
57
private:
58
};
59
60
} /* namespace drizzled */
61
62
#endif /* DRIZZLED_EXECUTE_H */