function DatabaseUpdateTestCase::testWhereUpdate in Drupal 7
Confirm that we can update a multiple records with a where call.
File
- modules/
simpletest/ tests/ database_test.test, line 834
Class
- DatabaseUpdateTestCase
- Update builder tests.
Code
function testWhereUpdate() {
$num_updated = db_update('test')
->fields(array(
'job' => 'Musician',
))
->where('age > :age', array(
':age' => 26,
))
->execute();
$this
->assertIdentical($num_updated, 2, 'Updated 2 records.');
$num_matches = db_query('SELECT COUNT(*) FROM {test} WHERE job = :job', array(
':job' => 'Musician',
))
->fetchField();
$this
->assertIdentical($num_matches, '2', 'Updated fields successfully.');
}