function DatabaseFetch2TestCase::testQueryFetchBoth

Confirm that we can fetch a record into a doubly-keyed array explicitly.

File

drupal/modules/simpletest/tests/database_test.test, line 441

Class

DatabaseFetch2TestCase
Test fetch actions, part 2.

Code

function testQueryFetchBoth() {
  $records = array();
  $result = db_query('SELECT name FROM {test} WHERE age = :age', array(
    ':age' => 25,
  ), array(
    'fetch' => PDO::FETCH_BOTH,
  ));
  foreach ($result as $record) {
    $records[] = $record;
    if ($this
      ->assertTrue(is_array($record), 'Record is an array.')) {
      $this
        ->assertIdentical($record[0], 'John', 'Record can be accessed numerically.');
      $this
        ->assertIdentical($record['name'], 'John', 'Record can be accessed associatively.');
    }
  }
  $this
    ->assertIdentical(count($records), 1, 'There is only one record.');
}