php-src/ext/pdo_sqlite/tests/pdo_035.phpt
Nikita Popov 584dc19df1 Move tests requiring pdo_sqlite into ext directory
If the test is written against a specific PDO driver, it should
not be part of the generic ext/pdo tests.
2021-06-14 15:01:16 +02:00

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