summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-modifycommand.h
diff options
context:
space:
mode:
Diffstat (limited to 'libsqlitepp/sqlite-modifycommand.h')
-rw-r--r--libsqlitepp/sqlite-modifycommand.h25
1 files changed, 25 insertions, 0 deletions
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 <modifycommand.h>
+#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
+
+
+