summaryrefslogtreecommitdiff
path: root/src/interfaces/odbc/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/odbc/connection.c')
-rw-r--r--src/interfaces/odbc/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/odbc/connection.c b/src/interfaces/odbc/connection.c
index b0dd575fb95..2b0d67a648d 100644
--- a/src/interfaces/odbc/connection.c
+++ b/src/interfaces/odbc/connection.c
@@ -384,7 +384,7 @@ CC_begin(ConnectionClass *self)
if (res != NULL)
{
- ret = QR_command_successful(res);
+ ret = QR_command_maybe_successful(res);
QR_Destructor(res);
}
else
@@ -408,7 +408,7 @@ CC_commit(ConnectionClass *self)
mylog("CC_commit: sending COMMIT!\n");
if (res != NULL)
{
- ret = QR_command_successful(res);
+ ret = QR_command_maybe_successful(res);
QR_Destructor(res);
}
else