From bf8c4b6990a203c28b92ca09e170d0cbea206092 Mon Sep 17 00:00:00 2001 From: randomdan Date: Thu, 25 Nov 2010 19:26:04 +0000 Subject: Use proper ODBC SQL_SUCCEEDED macro, not SQL_SUCCESS comparison --- libodbcpp/command.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libodbcpp/command.cpp') diff --git a/libodbcpp/command.cpp b/libodbcpp/command.cpp index 50dd679..db6a51c 100644 --- a/libodbcpp/command.cpp +++ b/libodbcpp/command.cpp @@ -8,21 +8,21 @@ ODBC::Command::Command(const Connection & c, const std::string & s) : connection(c) { RETCODE rc = SQLAllocHandle(SQL_HANDLE_STMT, c.conn, &hStmt); - if (rc != SQL_SUCCESS) { + if (!SQL_SUCCEEDED(rc)) { throw Error(rc, SQL_HANDLE_STMT, hStmt, "Allocate statement handle"); } rc = SQLSetStmtAttr(hStmt, SQL_ATTR_CURSOR_TYPE, (SQLPOINTER)SQL_CURSOR_DYNAMIC, 0); - if ((rc != SQL_SUCCESS)) { + if (!SQL_SUCCEEDED(rc)) { throw ConnectionError(rc, SQL_HANDLE_STMT, hStmt, "Set scrollable cursor"); } rc = SQLPrepare(hStmt, (SQLCHAR*)sql.c_str(), sql.length()); - if (rc != SQL_SUCCESS) { + if (!SQL_SUCCEEDED(rc)) { SQLFreeHandle(SQL_HANDLE_STMT, hStmt); throw Error(rc, SQL_HANDLE_STMT, hStmt, "Prepare statement"); } SQLSMALLINT pcount; rc = SQLNumParams(hStmt, &pcount); - if (rc != SQL_SUCCESS) { + if (!SQL_SUCCEEDED(rc)) { SQLFreeHandle(SQL_HANDLE_STMT, hStmt); throw Error(rc, SQL_HANDLE_STMT, hStmt, "Parameter count"); } -- cgit v1.2.3