function Connection::upsert
Prepares and returns an UPSERT query object.
@todo in drupal:11.0.0, make this method abstract since Query\Upsert is an abstract class.
Parameters
string $table: The table to use for the upsert query.
array $options: (optional) An array of options on the query.
Return value
\Drupal\Core\Database\Query\Upsert A new Upsert query object.
Overrides Connection::upsert
1 method overrides Connection::upsert()
- Connection::upsert in core/
tests/ fixtures/ database_drivers/ module/ core_fake/ src/ Driver/ Database/ CoreFakeWithAllCustomClasses/ Connection.php
File
-
core/
tests/ fixtures/ database_drivers/ custom/ fake/ Connection.php, line 118
Class
- Connection
- A fake Connection class for testing purposes.
Namespace
Drupal\Driver\Database\fakeCode
public function upsert($table, array $options = []) {
return new Upsert($this, $table, $options);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.