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-modifycommand.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 libmysqlpp/my-modifycommand.h (limited to 'libmysqlpp/my-modifycommand.h') diff --git a/libmysqlpp/my-modifycommand.h b/libmysqlpp/my-modifycommand.h new file mode 100644 index 0000000..cf570bb --- /dev/null +++ b/libmysqlpp/my-modifycommand.h @@ -0,0 +1,25 @@ +#ifndef MY_MODIFYCOMMAND_H +#define MY_MODIFYCOMMAND_H + +#include +#include "my-command.h" + +namespace MySQL { + class Connection; + class ModifyCommand : public DB::ModifyCommand, public Command { + public: + ModifyCommand(const Connection *, const std::string & sql); + virtual ~ModifyCommand(); + + unsigned int execute(bool); + + private: + void prepare() const; + mutable bool prepared; + }; +} + +#endif + + + -- cgit v1.2.3