summaryrefslogtreecommitdiff
path: root/libodbcpp/selectcommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'libodbcpp/selectcommand.h')
-rw-r--r--libodbcpp/selectcommand.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/libodbcpp/selectcommand.h b/libodbcpp/selectcommand.h
deleted file mode 100644
index 51dba87..0000000
--- a/libodbcpp/selectcommand.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef ODBC_SELECTCOMMAND_H
-#define ODBC_SELECTCOMMAND_H
-
-#include <selectcommand.h>
-#include "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
-