12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- --TEST--
- PDO_Firebird: bug 48877 The "bindValue" and "bindParam" do not work for PDO Firebird if we use named parameters (:parameter).
- --SKIPIF--
- <?php extension_loaded("pdo_firebird") or die("skip"); ?>
- <?php function_exists("ibase_query") or die("skip"); ?>
- --FILE--
- <?php
- require("testdb.inc");
- $dbh = new PDO("firebird:dbname=$test_base",$user,$password) or die;
- $value = '2';
- @$dbh->exec('DROP TABLE testz');
- $dbh->exec('CREATE TABLE testz (A integer)');
- $dbh->exec("INSERT INTO testz VALUES ('1')");
- $dbh->exec("INSERT INTO testz VALUES ('2')");
- $dbh->exec("INSERT INTO testz VALUES ('3')");
- $dbh->commit();
- $query = "SELECT * FROM testz WHERE A = :paramno";
- $stmt = $dbh->prepare($query);
- $stmt->bindParam(':paramno', $value, PDO::PARAM_STR);
- $stmt->execute();
- $rows = $stmt->fetch();
- var_dump($stmt->fetch());
- var_dump($stmt->rowCount());
- $stmt = $dbh->prepare('DELETE FROM testz');
- $stmt->execute();
- $dbh->commit();
- $dbh->exec('DROP TABLE testz');
- unset($stmt);
- unset($dbh);
- ?>
- --EXPECT--
- bool(false)
- int(1)
|