summaryrefslogtreecommitdiff
path: root/libmysqlpp/my-modifycommand.cpp
blob: dd607b3c9a2d0a6669787c27a18aa9d5247b3548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "my-modifycommand.h"
#include "connection.h"
#include "my-error.h"
#include <cstdlib>

MySQL::ModifyCommand::ModifyCommand(const Connection * conn, const std::string & sql) :
	DB::Command(sql), DB::ModifyCommand(sql), MySQL::Command(conn, sql)
{
}

unsigned int
MySQL::ModifyCommand::execute(bool anc)
{
	bindParams();
	if (mysql_stmt_execute(stmt.get())) {
		throw Error(stmt.get());
	}
	int rows = mysql_stmt_affected_rows(stmt.get());
	if (rows == 0 && !anc) {
		throw DB::NoRowsAffected();
	}
	return rows;
}