From 5dd91c7b80443c1f0e747088159c4d8b78d1856d Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 24 Dec 2015 04:13:24 +0000 Subject: SQLite files prefixed with sqlite- --- libsqlitepp/sqlite-modifycommand.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 libsqlitepp/sqlite-modifycommand.h (limited to 'libsqlitepp/sqlite-modifycommand.h') diff --git a/libsqlitepp/sqlite-modifycommand.h b/libsqlitepp/sqlite-modifycommand.h new file mode 100644 index 0000000..657639b --- /dev/null +++ b/libsqlitepp/sqlite-modifycommand.h @@ -0,0 +1,25 @@ +#ifndef SQLITE_MODIFYCOMMAND_H +#define SQLITE_MODIFYCOMMAND_H + +#include +#include "sqlite-command.h" + +namespace SQLite { + 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