summaryrefslogtreecommitdiff
path: root/libmysqlpp/modifycommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libmysqlpp/modifycommand.cpp')
-rw-r--r--libmysqlpp/modifycommand.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/libmysqlpp/modifycommand.cpp b/libmysqlpp/modifycommand.cpp
deleted file mode 100644
index e6e86b7..0000000
--- a/libmysqlpp/modifycommand.cpp
+++ /dev/null
@@ -1,30 +0,0 @@
-#include "modifycommand.h"
-#include "error.h"
-#include <stdlib.h>
-#include "connection.h"
-
-MySQL::ModifyCommand::ModifyCommand(const Connection * conn, const std::string & sql) :
- DB::Command(sql),
- DB::ModifyCommand(sql),
- MySQL::Command(conn, sql)
-{
-}
-
-MySQL::ModifyCommand::~ModifyCommand()
-{
-}
-
-unsigned int
-MySQL::ModifyCommand::execute(bool anc)
-{
- bindParams();
- if (mysql_stmt_execute(stmt)) {
- throw Error(mysql_stmt_error(stmt));
- }
- int rows = mysql_stmt_affected_rows(stmt);
- if (rows == 0 && !anc) {
- throw Error("No rows affected");
- }
- return rows;
-}
-