summaryrefslogtreecommitdiff
path: root/ext/pdo_dblib
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2005-01-18 04:58:50 +0000
committerWez Furlong <wez@php.net>2005-01-18 04:58:50 +0000
commita9d98544de4a41bba3542b6b5bcd1f18e18af073 (patch)
treec0e8a0ba950eeb62ff7ed5cf6849a7352f97614e /ext/pdo_dblib
parentd911f1986230834ccda961860aac784efdea3712 (diff)
downloadphp-git-a9d98544de4a41bba3542b6b5bcd1f18e18af073.tar.gz
Allow drivers to select bind emulation on a per statement basis
Diffstat (limited to 'ext/pdo_dblib')
-rw-r--r--ext/pdo_dblib/dblib_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_dblib/dblib_driver.c b/ext/pdo_dblib/dblib_driver.c
index 5ec3794876..2bb40ce88f 100644
--- a/ext/pdo_dblib/dblib_driver.c
+++ b/ext/pdo_dblib/dblib_driver.c
@@ -91,6 +91,7 @@ static int dblib_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len,
S->H = H;
stmt->driver_data = S;
stmt->methods = &dblib_stmt_methods;
+ stmt->supports_placeholders = PDO_PLACEHOLDER_NONE;
S->err.sqlstate = stmt->error_code;
return 1;
@@ -220,7 +221,6 @@ static int pdo_dblib_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_
}
ret = 1;
- dbh->supports_placeholders = 0;
dbh->max_escaped_char_length = 2;
dbh->alloc_own_columns = 1;