summaryrefslogtreecommitdiff
path: root/libsqlitepp/sqlite-modifycommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libsqlitepp/sqlite-modifycommand.cpp')
-rw-r--r--libsqlitepp/sqlite-modifycommand.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/libsqlitepp/sqlite-modifycommand.cpp b/libsqlitepp/sqlite-modifycommand.cpp
new file mode 100644
index 0000000..cb5d761
--- /dev/null
+++ b/libsqlitepp/sqlite-modifycommand.cpp
@@ -0,0 +1,31 @@
+#include "sqlite-modifycommand.h"
+#include "sqlite-error.h"
+#include <stdlib.h>
+#include "sqlite-connection.h"
+
+SQLite::ModifyCommand::ModifyCommand(const Connection * conn, const std::string & sql) :
+ DB::Command(sql),
+ DB::ModifyCommand(sql),
+ SQLite::Command(conn, sql)
+{
+}
+
+SQLite::ModifyCommand::~ModifyCommand()
+{
+}
+
+unsigned int
+SQLite::ModifyCommand::execute(bool anc)
+{
+ if (sqlite3_step(stmt) != SQLITE_DONE) {
+ sqlite3_reset(stmt);
+ throw Error(sqlite3_errmsg(c->db));
+ }
+ unsigned int rows = sqlite3_changes(c->db);
+ sqlite3_reset(stmt);
+ if (rows == 0 && !anc) {
+ throw Error("No rows affected");
+ }
+ return rows;
+}
+