function UpdateTest::testWhereUpdate

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Database/UpdateTest.php \Drupal\KernelTests\Core\Database\UpdateTest::testWhereUpdate()
  2. 8.9.x core/tests/Drupal/KernelTests/Core/Database/UpdateTest.php \Drupal\KernelTests\Core\Database\UpdateTest::testWhereUpdate()
  3. 10 core/tests/Drupal/KernelTests/Core/Database/UpdateTest.php \Drupal\KernelTests\Core\Database\UpdateTest::testWhereUpdate()

Confirms that we can update multiple records with a where call.

File

core/tests/Drupal/KernelTests/Core/Database/UpdateTest.php, line 77

Class

UpdateTest
Tests the update query builder.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testWhereUpdate() : void {
    $num_updated = $this->connection
        ->update('test')
        ->fields([
        'job' => 'Musician',
    ])
        ->where('[age] > :age', [
        ':age' => 26,
    ])
        ->execute();
    $this->assertSame(2, $num_updated, 'Updated 2 records.');
    $num_matches = $this->connection
        ->query('SELECT COUNT(*) FROM {test} WHERE [job] = :job', [
        ':job' => 'Musician',
    ])
        ->fetchField();
    $this->assertSame('2', $num_matches, 'Updated fields successfully.');
}

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