From: Ilia Alshanetsky Date: Sun, 13 Feb 2005 17:16:24 +0000 (+0000) Subject: Set auto-commit after establishing the connection, otherwise we have a crash. X-Git-Tag: RELEASE_0_2_4~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f57b8d6dc52e86a2fb4392a16f77db25d232d34a;p=php Set auto-commit after establishing the connection, otherwise we have a crash. --- diff --git a/ext/pdo_mysql/mysql_driver.c b/ext/pdo_mysql/mysql_driver.c index fa41ec07e1..c4c6539d4f 100755 --- a/ext/pdo_mysql/mysql_driver.c +++ b/ext/pdo_mysql/mysql_driver.c @@ -324,8 +324,6 @@ static int pdo_mysql_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_ } } - mysql_handle_autocommit(dbh TSRMLS_CC); - if (vars[2].optval && !strcmp("localhost", vars[2].optval)) { unix_socket = vars[4].optval; } else { @@ -337,6 +335,8 @@ static int pdo_mysql_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_ goto cleanup; } + mysql_handle_autocommit(dbh TSRMLS_CC); + H->attached = 1; dbh->alloc_own_columns = 1;