mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

If the test is written against a specific PDO driver, it should not be part of the generic ext/pdo tests.
46 lines
873 B
PHP
46 lines
873 B
PHP
--TEST--
|
|
PDO Common: PDORow + get_parent_class()
|
|
--EXTENSIONS--
|
|
pdo_sqlite
|
|
--FILE--
|
|
<?php
|
|
$db = new PDO('sqlite::memory:');
|
|
$db->exec('CREATE TABLE test (id int)');
|
|
$db->exec('INSERT INTO test VALUES (23)');
|
|
|
|
$stmt = $db->prepare('SELECT id FROM test');
|
|
$stmt->execute();
|
|
$result = $stmt->fetch(PDO::FETCH_LAZY);
|
|
|
|
echo get_class($result), "\n";
|
|
var_dump(get_parent_class($result));
|
|
|
|
try {
|
|
$result->foo = 1;
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
$result[0] = 1;
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
unset($result->foo);
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
try {
|
|
unset($result[0]);
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
PDORow
|
|
bool(false)
|
|
Cannot write to PDORow property
|
|
Cannot write to PDORow offset
|
|
Cannot unset PDORow property
|
|
Cannot unset PDORow offset
|