Пример #1
0
 /**
  * Update table rows with the given data, optionally limited by using a filter
  *
  * @param   string  $table
  * @param   array   $bind
  * @param   Filter  $filter
  */
 public function update($table, array $bind, Filter $filter = null)
 {
     if ($filter) {
         $filter = $this->requireFilter($table, $filter);
     }
     $this->ds->update($this->prependTablePrefix($table), $this->requireStatementColumns($table, $bind), $filter);
 }