php-src/ext/pdo_sqlite/tests/pdo_035.phpt
2023-08-08 09:49:02 +01:00

46 lines
897 B
PHP

--TEST--
PDO Common: PDORow + get_parent_class()
--EXTENSIONS--
pdo_sqlite
--FILE--
<?php
$db = new PDO('sqlite::memory:');
$db->exec('CREATE TABLE test_pdo_035 (id int)');
$db->exec('INSERT INTO test_pdo_035 VALUES (23)');
$stmt = $db->prepare('SELECT id FROM test_pdo_035');
$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