From f268aec98176049136bceb2741f3615841e5c516 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 23 Dec 2015 23:15:18 +0000 Subject: MySQL files prefixed with my- --- libmysqlpp/my-selectcommand.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 libmysqlpp/my-selectcommand.h (limited to 'libmysqlpp/my-selectcommand.h') diff --git a/libmysqlpp/my-selectcommand.h b/libmysqlpp/my-selectcommand.h new file mode 100644 index 0000000..dc4937a --- /dev/null +++ b/libmysqlpp/my-selectcommand.h @@ -0,0 +1,26 @@ +#ifndef MY_SELECTCOMMAND_H +#define MY_SELECTCOMMAND_H + +#include +#include "my-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 + + -- cgit v1.2.3