values() public method

Sets the values to be inserted into the current query.
public values ( array $values, boolean $append ) : Insert
$values array
$append boolean
return Insert
Esempio n. 1
0
 /**
  * {@inheritdoc}
  */
 public function values(array $values, $append = true)
 {
     return $this->command->values($values, $append);
 }