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_odbc/odbc_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_odbc/odbc_driver.c')
-rwxr-xr-x | ext/pdo_odbc/odbc_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_odbc/odbc_driver.c b/ext/pdo_odbc/odbc_driver.c index ced91d6fbb..c54c1a9a36 100755 --- a/ext/pdo_odbc/odbc_driver.c +++ b/ext/pdo_odbc/odbc_driver.c @@ -107,7 +107,7 @@ static int odbc_handle_closer(pdo_dbh_t *dbh TSRMLS_DC) return 0; } -static int odbc_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 odbc_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pdo_stmt_t *stmt, zval *driver_options TSRMLS_DC) { RETCODE rc; pdo_odbc_db_handle *H = (pdo_odbc_db_handle *)dbh->driver_data; |