public Connection::merge($table, array $options = array())
Prepares and returns a MERGE query object.
Parameters
string $table: The table to use for the merge statement.
array $options: (optional) An array of options on the query.
Return value
\Drupal\Core\Database\Query\Merge A new Merge query object.
See also
\Drupal\Core\Database\Query\Merge
File
- core/lib/Drupal/Core/Database/Connection.php, line 821
Class
- Connection
- Base Database API class.
Namespace
Drupal\Core\Database
Code
1 2 3 4 | public function merge( $table , array $options = array ()) { $class = $this ->getDriverClass( 'Merge' ); return new $class ( $this , $table , $options ); } |
Please login to continue.