diff options
author | randomdan <randomdan@localhost> | 2012-11-18 19:13:16 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2012-11-18 19:13:16 +0000 |
commit | 49286cb2d2987e4d2f6a07f6b9ed46d4de97d9ac (patch) | |
tree | 9064882e6e44203bf35bf70089500c326458b6f1 /libmysqlpp/modifycommand.cpp | |
parent | Migrate all stuff to stricter compilations/links and C++0x builds (diff) | |
download | libdbpp-mysql-49286cb2d2987e4d2f6a07f6b9ed46d4de97d9ac.tar.bz2 libdbpp-mysql-49286cb2d2987e4d2f6a07f6b9ed46d4de97d9ac.tar.xz libdbpp-mysql-49286cb2d2987e4d2f6a07f6b9ed46d4de97d9ac.zip |
Add a basic MySQL connector, not fully functional, but will suffice for p2tv
Diffstat (limited to 'libmysqlpp/modifycommand.cpp')
-rw-r--r-- | libmysqlpp/modifycommand.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libmysqlpp/modifycommand.cpp b/libmysqlpp/modifycommand.cpp new file mode 100644 index 0000000..e6e86b7 --- /dev/null +++ b/libmysqlpp/modifycommand.cpp @@ -0,0 +1,30 @@ +#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; +} + |