Example #1
0
 /**
  * Insert new rows list with values from $values.
  * @param $fields
  * @param $values
  * @param bool|false $ignore_unique_error
  */
 public function InsertList($fields, $values, $ignore_unique_error = false)
 {
     if ($this->_validate_insert_list($fields, $values)) {
         $this->_before_insert();
         $this->table->InsertList($fields, $values, $ignore_unique_error);
         $this->_on_insert();
     }
 }