1
0
mirror of https://github.com/php/php-src.git synced 2026-04-04 22:52:40 +02:00

Actually fix quoted identifiers this time

This commit is contained in:
Stanley Sufficool
2010-06-24 03:40:45 +00:00
parent 07985e9172
commit 36b8c4cb35

View File

@@ -315,7 +315,7 @@ static int pdo_dblib_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_
DBSETOPT(H->link, DBTEXTSIZE, "2147483647");
/* allow double quoted indentifiers */
DBSETOPT(H->link, DBQUOTEDIDENT, NULL);
DBSETOPT(H->link, DBQUOTEDIDENT, 1);
if (vars[3].optval && FAIL == dbuse(H->link, vars[3].optval)) {
goto cleanup;