Updatebypk Not Found!

Hi,

Am trying to update one field in my article controller with this code:


$this->updateByPk($id, array('title'=>'TEST'));

The error:


ArticleController and its behaviors do not have a method or closure named "updateByPk". (/Applications/MNPP/htdocs/yii/framework/base/CComponent.php:265)




Also tried with:


$this::model()->updateByPk($id, array('title'=>'TEST'));


$this::updateByPk($id, array('title'=>'TEST'));

am using latest model

Thanks ;)

Found it …


Article::model()->updateByPk($id, array('title'=>''))

The problem was from the ajax request in the form … it was not sending the $id value ;)

Hi,

please see it…

http://yiibook.blogspot.in/2012/06/update-query-in-yii.html

it’s some help…

Thanks