Exemple #1
0
 public function update($data)
 {
     $builder = $this->sqlBuilder;
     $this->sqlBuilder = new SqlBuilder($this);
     $this->where($this->column, $this->active);
     $return = parent::update($data);
     $this->sqlBuilder = $builder;
     return $return;
 }