summaryrefslogtreecommitdiff
path: root/libodbcpp/modifycommand.cpp
blob: a12b9dcd2b34d511c765bb0b5a855549525647e3 (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
31
32
33
34
35
36
37
38
39
40
#include "modifycommand.h"
#include "error.h"

ODBC::ModifyCommand::ModifyCommand(const ODBC::Connection & c, const std::string & sql) :
	Command(c, sql)
{
}

ODBC::ModifyCommand::~ModifyCommand()
{
}

unsigned int
ODBC::ModifyCommand::execute(bool anc)
{
	if (connection.txIsAborted()) {
		throw Error("Transaction has been aborted, not issuing any more commands");
	}
	RETCODE rc = SQLExecute(hStmt); 
    if (!SQL_SUCCEEDED(rc)) {
		if (rc != SQL_NO_DATA || !anc) {
			connection.abortTx();
			throw Error(rc, SQL_HANDLE_STMT, hStmt, "%s: SQLExecute",
					__FUNCTION__);
		}
    }
	SQLLEN rows;
	rc = SQLRowCount(hStmt, &rows);
    if (!SQL_SUCCEEDED(rc)) {
		connection.abortTx();
		throw Error(rc, SQL_HANDLE_STMT, hStmt, "%s: SQLRowCount",
				__FUNCTION__);
	}
	if (rows > 0 || anc) {
		return rows;
	}
	connection.abortTx();
	throw Error("%s: No rows affected", __FUNCTION__);
}