From 63d9cbb434ec4f6e828083b99d638127cfce7a95 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 24 Dec 2015 04:08:56 +0000 Subject: ODBC files prefixed with odbc- --- libodbcpp/odbc-selectcommand.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 libodbcpp/odbc-selectcommand.h (limited to 'libodbcpp/odbc-selectcommand.h') diff --git a/libodbcpp/odbc-selectcommand.h b/libodbcpp/odbc-selectcommand.h new file mode 100644 index 0000000..1fb2220 --- /dev/null +++ b/libodbcpp/odbc-selectcommand.h @@ -0,0 +1,22 @@ +#ifndef ODBC_SELECTCOMMAND_H +#define ODBC_SELECTCOMMAND_H + +#include +#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(); + void execute(); + + private: + bool fetch(SQLSMALLINT orientation = SQL_FETCH_NEXT, SQLLEN offset = 0); + }; +} + +#endif + -- cgit v1.2.3