You are here

function DatabaseFetch2TestCase::testQueryFetchBoth in SimpleTest 7

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

File

tests/database_test.test, line 365

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), t('Record is an array.'))) {
      $this
        ->assertIdentical($record[0], 'John', t('Record can be accessed numerically.'));
      $this
        ->assertIdentical($record['name'], 'John', t('Record can be accessed associatively.'));
    }
  }
  $this
    ->assertIdentical(count($records), 1, t('There is only one record.'));
}