0

有谁知道如何在 yii 中使用 andWhere() 条件。当我使用它时,我收到以下错误。

CDbCommand and its behaviors do not have a method or closure named "andWhere". 

这是示例代码

 $result=Yii::app()->db->createCommand()
->select()
->from('{{product}}')
->andWhere('price>:param1', array(':param1'=>150))
->andWhere('price<:param2', array(':param2'=>210))
->queryAll();
4

2 回答 2

7

andWhere()功能是在 yii 1.1.13 中添加的。看来您使用的是旧版本的 yii。更新框架

于 2013-02-21T14:21:57.253 回答
-1

试试这个方法怎么样,很简单

Yii::app()->db->createCommand()
       ->select("*")
       ->from('package')
       ->where('id=:id and status:status', array(':id'=>5,':status'=>1))
       ->queryRow();

甚至

    $criteria = new CDbCriteria();
    $criteria->condition = 'id=:id and status=:status';
    $criteria->params = array(':id'=>$id,':status'=>1);

确切地说

$result=Yii::app()->db->createCommand()
   ->select()
   ->from('{{product}}')
   ->where('price>:param1 and price<:param2', array(':param1'=>150,':param2'=>210))
   ->queryAll();
于 2013-02-21T14:21:38.307 回答