summaryrefslogtreecommitdiff
path: root/libmysqlpp/selectcommand.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-12-23 23:15:18 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-12-23 23:15:18 +0000
commitf268aec98176049136bceb2741f3615841e5c516 (patch)
tree79b980073c32aa1bb08988d06151d194b4ac104c /libmysqlpp/selectcommand.h
parentUse a b2 lib for mysql (diff)
downloadlibdbpp-mysql-f268aec98176049136bceb2741f3615841e5c516.tar.bz2
libdbpp-mysql-f268aec98176049136bceb2741f3615841e5c516.tar.xz
libdbpp-mysql-f268aec98176049136bceb2741f3615841e5c516.zip
MySQL files prefixed with my-
Diffstat (limited to 'libmysqlpp/selectcommand.h')
-rw-r--r--libmysqlpp/selectcommand.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/libmysqlpp/selectcommand.h b/libmysqlpp/selectcommand.h
deleted file mode 100644
index d145ce8..0000000
--- a/libmysqlpp/selectcommand.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef MY_SELECTCOMMAND_H
-#define MY_SELECTCOMMAND_H
-
-#include <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
-
-