public function FetchTest::testQueryFetchObject in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/KernelTests/Core/Database/FetchTest.php \Drupal\KernelTests\Core\Database\FetchTest::testQueryFetchObject()
Confirms that we can fetch a record to an object explicitly.
File
- core/
tests/ Drupal/ KernelTests/ Core/ Database/ FetchTest.php, line 37
Class
- FetchTest
- Tests the Database system's various fetch capabilities.
Namespace
Drupal\KernelTests\Core\DatabaseCode
public function testQueryFetchObject() {
$records = [];
$result = $this->connection
->query('SELECT [name] FROM {test} WHERE [age] = :age', [
':age' => 25,
], [
'fetch' => \PDO::FETCH_OBJ,
]);
foreach ($result as $record) {
$records[] = $record;
$this
->assertIsObject($record);
$this
->assertSame('John', $record->name);
}
$this
->assertCount(1, $records, 'There is only one record.');
}