diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-04-30 00:27:27 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-04-30 00:27:27 +0100 |
commit | f634bafc38bb948e41f829b16f03e2f0b8ee8f93 (patch) | |
tree | c4f8ff17614b68531355e8047d81e96719101d10 /libsqlitepp/modifycommand.h | |
parent | Ignore Vim swap files (diff) | |
download | libdbpp-sqlite-f634bafc38bb948e41f829b16f03e2f0b8ee8f93.tar.bz2 libdbpp-sqlite-f634bafc38bb948e41f829b16f03e2f0b8ee8f93.tar.xz libdbpp-sqlite-f634bafc38bb948e41f829b16f03e2f0b8ee8f93.zip |
Adds support for SQLite, SQLite mocking and some basic tests
Diffstat (limited to 'libsqlitepp/modifycommand.h')
-rw-r--r-- | libsqlitepp/modifycommand.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/libsqlitepp/modifycommand.h b/libsqlitepp/modifycommand.h new file mode 100644 index 0000000..ffb1205 --- /dev/null +++ b/libsqlitepp/modifycommand.h @@ -0,0 +1,25 @@ +#ifndef SQLITE_MODIFYCOMMAND_H +#define SQLITE_MODIFYCOMMAND_H + +#include "../libdbpp/modifycommand.h" +#include "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 + + + |