blob: 58c569b9cdc095aa2f0f633310d62ff7cf00037d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef MY_SELECTCOMMAND_H
#define MY_SELECTCOMMAND_H
#include "../libdbpp/selectcommand.h"
#include "command.h"
namespace MySQL {
class Connection;
class ColumnBase;
class SelectCommand : public DB::SelectCommand, public Command {
public:
SelectCommand(const Connection *, const std::string & sql);
bool fetch();
void execute();
private:
bool prepared;
bool executed;
Binds fields;
};
}
#endif
|