diff options
author | Popa Adrian Marius <mariuz@php.net> | 2011-12-10 22:04:23 +0000 |
---|---|---|
committer | Popa Adrian Marius <mariuz@php.net> | 2011-12-10 22:04:23 +0000 |
commit | 74343ca5067dc58126fc633ad81cbc901c76a879 (patch) | |
tree | 4d5d31a15fe860ca0c2276455ecd43d9f2064a04 /ext/pdo_firebird/firebird_driver.c | |
parent | 9e06b00e713eb6407ee14a2821dd67f7ee7f379f (diff) | |
download | php-git-74343ca5067dc58126fc633ad81cbc901c76a879.tar.gz |
bug fixed #48877 - bindValue and bindParam do not work for PDO Firebird
Diffstat (limited to 'ext/pdo_firebird/firebird_driver.c')
-rw-r--r-- | ext/pdo_firebird/firebird_driver.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/pdo_firebird/firebird_driver.c b/ext/pdo_firebird/firebird_driver.c index d9c6112475..eb47934458 100644 --- a/ext/pdo_firebird/firebird_driver.c +++ b/ext/pdo_firebird/firebird_driver.c @@ -433,6 +433,7 @@ static int firebird_alloc_prepare_stmt(pdo_dbh_t *dbh, const char *sql, long sql case ':': in_param = 1; ppname = pname; + *ppname++ = sql[l]; case '?': *c++ = '?'; ++pindex; |