From f268aec98176049136bceb2741f3615841e5c516 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 23 Dec 2015 23:15:18 +0000 Subject: MySQL files prefixed with my- --- libmysqlpp/modifycommand.cpp | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 libmysqlpp/modifycommand.cpp (limited to 'libmysqlpp/modifycommand.cpp') 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 -#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; -} - -- cgit v1.2.3