function DatabaseUpdateTestCase::testWhereUpdate
Confirm that we can update a multiple records with a where call.
Archivo
- drupal-7.x/
modules/ simpletest/ tests/ database_test.test, line 806
Class
- DatabaseUpdateTestCase
- Update builder tests.
Código
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.');
}