summaryrefslogtreecommitdiff
path: root/libsqlitepp/modifycommand.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2015-12-24 04:13:24 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2015-12-24 04:13:24 +0000
commit5dd91c7b80443c1f0e747088159c4d8b78d1856d (patch)
tree226331b6026e722f6a69765963ff19a9436155c1 /libsqlitepp/modifycommand.cpp
parentUse parent glibmm (diff)
downloadlibdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.tar.bz2
libdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.tar.xz
libdbpp-sqlite-5dd91c7b80443c1f0e747088159c4d8b78d1856d.zip
SQLite files prefixed with sqlite-
Diffstat (limited to 'libsqlitepp/modifycommand.cpp')
-rw-r--r--libsqlitepp/modifycommand.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/libsqlitepp/modifycommand.cpp b/libsqlitepp/modifycommand.cpp
deleted file mode 100644
index 1b44cf4..0000000
--- a/libsqlitepp/modifycommand.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-#include "modifycommand.h"
-#include "error.h"
-#include <stdlib.h>
-#include "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;
-}
-