2012-09-15 76 views

回答

0

你能指定你想在哪一點增加列嗎?

爲什麼不擴展ActiveRecord類並遞增需要遞增的列,然後調用父實現。例如:

class ActiveRecord extends CActiveRecord { 
    public updateAll($attributes, $condition='', $params=array()) { 
     $this->incCol++; 
     parent::updateAll($attributes, $condition, $params); 
    } 
}