テーブルのtablename:user
列名があります: name
、、、、。データベースにいくつかのサンプル データを追加しましたが、グリッド ビューでは、アクティブ =1 の列のデータのみを表示したい クエリにこの条件を追加する方法を教えてください。mysql データベースを使用しています。dept
area
active
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations automatically generated below.
return array(
//'reports_to' => array(self::BELONGS_TO, 'Student', 'id'),
);
}
public function attributeLabels()
{
return array(
'user_id' => 'User',
'user_name' => 'User Name',
'userpass' => 'Userpass',
'userdept' => 'Userdept',
);
}
public function search()
{
// Warning: Please modify the following code to remove attributes that
// should not be searched.
$criteria=new CDbCriteria;
$criteria->compare('user_id',$this->user_id,true);
$criteria->compare('user_name',$this->user_name,true);
$criteria->compare('userpass',$this->userpass,true);
$criteria->compare('userdept',$this->userdept,true);
$criteria->compare('reports_to',$this->reports_to,true);
return new CActiveDataProvider($this, array(
'criteria'=>$criteria,
));
}
前もって感謝します