blob: 2d4311a54b05a15bf44c3f6a7d0f91227ee008e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef ODBC_SELECTCOMMAND_H
#define ODBC_SELECTCOMMAND_H
#include <selectcommand.h>
#include "odbc-command.h"
namespace ODBC {
class Column;
class SelectCommand : public Command, public DB::SelectCommand {
public:
SelectCommand (const Connection &, const std::string & sql);
~SelectCommand();
bool fetch() override;
void execute() override;
private:
bool fetch(SQLSMALLINT orientation = SQL_FETCH_NEXT, SQLLEN offset = 0);
};
}
#endif
|