public Connection::upsert($table, array $options = array())
Prepares and returns an UPSERT query object.
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.
See also
\Drupal\Core\Database\Query\Upsert
File
- core/lib/Drupal/Core/Database/Connection.php, line 839
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\Database
Code
1 2 3 4 | public function upsert( $table , array $options = array ()) { $class = $this ->getDriverClass( 'Upsert' ); return new $class ( $this , $table , $options ); } |
Please login to continue.