function Upsert::key
Same name in other branches
- 9 core/lib/Drupal/Core/Database/Query/Upsert.php \Drupal\Core\Database\Query\Upsert::key()
- 8.9.x core/lib/Drupal/Core/Database/Query/Upsert.php \Drupal\Core\Database\Query\Upsert::key()
- 11.x core/lib/Drupal/Core/Database/Query/Upsert.php \Drupal\Core\Database\Query\Upsert::key()
Sets the unique / primary key field to be used as condition for this query.
Parameters
string $field: The name of the field to set.
Return value
$this
File
-
core/
lib/ Drupal/ Core/ Database/ Query/ Upsert.php, line 53
Class
- Upsert
- General class for an abstracted "Upsert" (UPDATE or INSERT) query operation.
Namespace
Drupal\Core\Database\QueryCode
public function key($field) {
$this->key = $field;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.