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 |
||
2234
by Brian Aker
Mass removal of ifdef/endif in favor of pragma once. |
21 |
#pragma once
|
1976.7.2
by Brian Aker
Adding execute command to go along with main command. |
22 |
|
2116.1.44
by David Shrewsbury
Fix include |
23 |
#include <drizzled/visibility.h> |
2116.1.24
by David Shrewsbury
Fix for visibility problems when plugin is compiled as dynamic. |
24 |
|
2252.1.13
by Olaf van der Spek
Common fwd |
25 |
namespace drizzled { |
2116.1.13
by David Shrewsbury
Initial work to access result set. |
26 |
|
2116.1.24
by David Shrewsbury
Fix for visibility problems when plugin is compiled as dynamic. |
27 |
class DRIZZLED_API Execute |
1976.7.2
by Brian Aker
Adding execute command to go along with main command. |
28 |
{
|
29 |
bool wait; |
|
30 |
Session &_session; |
|
31 |
||
32 |
public: |
|
33 |
Execute(Session&, bool wait_arg); |
|
34 |
||
2385.2.15
by Olaf van der Spek
Refactor |
35 |
void run(str_ref); |
36 |
void run(str_ref, sql::ResultSet&); |
|
1976.7.2
by Brian Aker
Adding execute command to go along with main command. |
37 |
|
38 |
Session &session() |
|
39 |
{
|
|
40 |
return _session; |
|
41 |
}
|
|
42 |
||
1976.7.4
by Brian Aker
Added WAIT to the execute() function. |
43 |
void setWait(bool arg= true) |
44 |
{
|
|
45 |
wait= arg; |
|
46 |
}
|
|
47 |
||
1976.7.2
by Brian Aker
Adding execute command to go along with main command. |
48 |
private: |
49 |
};
|
|
50 |
||
51 |
} /* namespace drizzled */ |
|
52 |