diff options
| author | Wez Furlong <wez@php.net> | 2005-01-21 00:39:03 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2005-01-21 00:39:03 +0000 |
| commit | 26f97a911bb931ac911bb1b1735a5f46c4d14777 (patch) | |
| tree | c986ad716e409ffa72968e583715737729b84276 /ext/pdo_dblib/dblib_driver.c | |
| parent | dcd3d84ddb4c0d79437b93cf1cf71d2793749f77 (diff) | |
| download | php-git-26f97a911bb931ac911bb1b1735a5f46c4d14777.tar.gz | |
Eliminate unused parameter.
Don't start a transaction when asking for a cursor with pgsql.
Fix parameter binding for sqlite3
Diffstat (limited to 'ext/pdo_dblib/dblib_driver.c')
| -rw-r--r-- | ext/pdo_dblib/dblib_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_dblib/dblib_driver.c b/ext/pdo_dblib/dblib_driver.c index 9f3c828eb6..41b1e00972 100644 --- a/ext/pdo_dblib/dblib_driver.c +++ b/ext/pdo_dblib/dblib_driver.c @@ -83,7 +83,7 @@ static int dblib_handle_closer(pdo_dbh_t *dbh TSRMLS_DC) return 0; } -static int dblib_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, long options, zval *driver_options TSRMLS_DC) +static int dblib_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, zval *driver_options TSRMLS_DC) { pdo_dblib_db_handle *H = (pdo_dblib_db_handle *)dbh->driver_data; pdo_dblib_stmt *S = ecalloc(1, sizeof(*S)); |
