summaryrefslogtreecommitdiff
path: root/libmysqlpp/modifycommand.cpp
blob: e6e86b71f01181eed6a0031437fe3acebad95edf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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;
}