public Connection::upsert($table, array $options = array())
Prepares and returns an UPSERT query object.
string $table: The table to use for the upsert query.
array $options: (optional) An array of options on the query.
\Drupal\Core\Database\Query\Upsert A new Upsert query object.
Overrides Connection::upsert
\Drupal\Core\Database\Query\Upsert
public function upsert($table, array $options = array()) { // Use the (faster) native Upsert implementation for PostgreSQL >= 9.5. if (version_compare($this->version(), '9.5', '>=')) { $class = $this->getDriverClass('NativeUpsert'); } else { $class = $this->getDriverClass('Upsert'); } return new $class($this, $table, $options); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Driver!pgsql!Connection.php/function/Connection::upsert/8.1.x