mirror of
https://github.com/php/php-src.git
synced 2024-12-13 11:54:45 +08:00
44 lines
1.0 KiB
PHP
44 lines
1.0 KiB
PHP
--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)
|