summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/sqlite_driver.c
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_sqlite/sqlite_driver.c
parentd911f1986230834ccda961860aac784efdea3712 (diff)
downloadphp-git-a9d98544de4a41bba3542b6b5bcd1f18e18af073.tar.gz
Allow drivers to select bind emulation on a per statement basis
Diffstat (limited to 'ext/pdo_sqlite/sqlite_driver.c')
-rw-r--r--ext/pdo_sqlite/sqlite_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_sqlite/sqlite_driver.c b/ext/pdo_sqlite/sqlite_driver.c
index 391132e619..845acc0856 100644
--- a/ext/pdo_sqlite/sqlite_driver.c
+++ b/ext/pdo_sqlite/sqlite_driver.c
@@ -122,6 +122,7 @@ static int sqlite_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len,
S->H = H;
stmt->driver_data = S;
stmt->methods = &sqlite_stmt_methods;
+ stmt->supports_placeholders = PDO_PLACEHOLDER_POSITIONAL;
if (PDO_CURSOR_FWDONLY != pdo_attr_lval(driver_options, PDO_ATTR_CURSOR, PDO_CURSOR_FWDONLY TSRMLS_CC)) {
H->einfo.errcode = SQLITE_ERROR;
@@ -356,7 +357,6 @@ static int pdo_sqlite_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS
sqlite3_busy_timeout(H->db, timeout * 1000);
dbh->alloc_own_columns = 1;
- dbh->supports_placeholders = PDO_PLACEHOLDER_POSITIONAL;
dbh->max_escaped_char_length = 2;
ret = 1;