public function Select::forUpdate in Drupal 8
Same name in this branch
- 8 core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\Select::forUpdate()
- 8 core/lib/Drupal/Core/Database/Driver/sqlite/Select.php \Drupal\Core\Database\Driver\sqlite\Select::forUpdate()
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Database/Query/Select.php \Drupal\Core\Database\Query\Select::forUpdate()
Add FOR UPDATE to the query.
FOR UPDATE prevents the rows retrieved by the SELECT statement from being modified or deleted by other transactions until the current transaction ends. Other transactions that attempt UPDATE, DELETE, or SELECT FOR UPDATE of these rows will be blocked until the current transaction ends.
Parameters
$set: IF TRUE, FOR UPDATE will be added to the query, if FALSE then it won't.
Return value
\Drupal\Core\Database\Query\ConditionInterface The called object.
Overrides SelectInterface::forUpdate
1 method overrides Select::forUpdate()
- Select::forUpdate in core/
lib/ Drupal/ Core/ Database/ Driver/ sqlite/ Select.php - Add FOR UPDATE to the query.
File
- core/
lib/ Drupal/ Core/ Database/ Query/ Select.php, line 363
Class
- Select
- Query builder for SELECT statements.
Namespace
Drupal\Core\Database\QueryCode
public function forUpdate($set = TRUE) {
if (isset($set)) {
$this->forUpdate = $set;
}
return $this;
}