Error message

You are browsing documentation for drupal 7.x, which is not supported anymore. Read the updated version of this page for drupal 11.x (the latest version).

function DatabaseFetchTestCase::testQueryFetchObject

Confirm that we can fetch a record to an object explicitly.

File

modules/simpletest/tests/database_test.test, line 407

Class

DatabaseFetchTestCase
Test fetch actions, part 1.

Code

function testQueryFetchObject() {
 $records = array();
 $result = db_query ('SELECT name FROM {test} WHERE age = :age', array(
 ':age' => 25,
 ), array(
 'fetch' => PDO::FETCH_OBJ,
 ));
 foreach ($result as $record) {
 $records[] = $record;
 $this->assertTrue (is_object ($record), 'Record is an object.');
 $this->assertIdentical ($record->name , 'John', '25 year old is John.');
 }
 $this->assertIdentical (count ($records), 1, 'There is only one record.');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.