diff options
Diffstat (limited to 'libodbcpp/selectcommand.h')
-rw-r--r-- | libodbcpp/selectcommand.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libodbcpp/selectcommand.h b/libodbcpp/selectcommand.h new file mode 100644 index 0000000..fee1afc --- /dev/null +++ b/libodbcpp/selectcommand.h @@ -0,0 +1,23 @@ +#ifndef ODBC_SELECTCOMMAND_H +#define ODBC_SELECTCOMMAND_H + +#include "command.h" + +namespace ODBC { + class Column; + class SelectCommand : public Command { + typedef std::vector<Column*> Columns; + public: + SelectCommand (const Connection&, String sql); + ~SelectCommand(); + bool fetch(); + const Column& operator[](unsigned int col) const; + unsigned int columnCount() const; + private: + void execute(); + Columns columns; + }; +} + +#endif + |