From 89aa330637572e3dc5bcea9e190eb2b8248c5625 Mon Sep 17 00:00:00 2001 From: Dan Kalowsky Date: Fri, 7 Dec 2001 17:21:49 +0000 Subject: [PATCH] Fix for bug #13628. # basically handles a SQL_ERROR case for all odbc_execute()'s --- ext/odbc/php_odbc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index a07b036dbf..daf5c50296 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -1007,6 +1007,7 @@ PHP_FUNCTION(odbc_execute) odbc_sql_error(result->conn_ptr, result->stmt, "SQLExecute"); break; default: + odbc_sql_error(result->conn_ptr, result->stmt, "SQLExecute"); RETVAL_FALSE; } } -- 2.50.1