1

私は Yii の初心者で、GII を使用して CURD テーブルを作成しました。すべて正常に動作していますが、データベースから特定のレコードを取得したいだけで、WHERE 句 (たとえば、「クライアントの性別が男性の場合」など) を挿入します。Gii の生成コードでデータベースからデータが取得された場所と、必要な場所が見つかりません。コードに WHERE 句を挿入します。

ご存知のように、Gii によって生成されたモデル、コントローラー、およびビュー ファイル。モデルファイルは以下の通りです。私のビューは CGridView を使用して CRUD テーブルを生成しました。

    public static function model($className = __CLASS__) {
    return parent::model($className);
}

/**
 * @return string the associated database table name
 */
public function tableName() {
    return 'test_prefixtbl_client_local';
}

/**
 * @return array validation rules for model attributes.
 */
public function rules() {
    // NOTE: you should only define rules for those attributes that
    // will receive user inputs.
    return array(
        array('client_id', 'required'),
        array('client_id', 'length', 'max' => 15),
        array('surname, forename', 'length', 'max' => 20),
        array('title', 'length', 'max' => 6),
        array('status', 'length', 'max' => 8),
        array('dob', 'safe'),
        // The following rule is used by search().
        // Please remove those attributes that should not be searched.
        array('client_id, surname, forename, title, status, dob', 'safe', 'on' => 'search'),
    );
}

/**
 * @return array relational rules.
 */
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(
    );
}

/**
 * @return array customized attribute labels (name=>label)
 */
public function attributeLabels() {
    return array(
        'client_id' => 'Client ID',
        'surname' => 'Surname',
        'forename' => 'Forename',
        'title' => 'Title',
        'status' => 'Status',
        'dob' => 'Date of birth (yyyy-mm-dd)',
        'actions' => 'Actions',
    );
}

/**
 * Retrieves a list of models based on the current search/filter conditions.
 * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions.
 */
public function search() {
    // Warning: Please modify the following code to remove attributes that
    // should not be searched.

    $criteria = new CDbCriteria;

    $criteria->compare('client_id', $this->client_id, true);
    $criteria->compare('surname', $this->surname, true);
    $criteria->compare('forename', $this->forename, true);
    $criteria->compare('title', $this->title, true);
    $criteria->compare('status', $this->status, true);
    $criteria->compare('dob', $this->dob, true);

    return new CActiveDataProvider($this, array(
                'criteria' => $criteria,
                'sort' => array(
                    'defaultOrder' => 'dob DESC',
                ),
            ));
}
4

1 に答える 1

1

クエリを実行するには 2 つの方法があります。1 つは次のようにクエリ ビルダー (チュートリアルはこちら)を使用する方法です。

$clientLocalArray = Yii::app()->db->createCommand()
->select()
->from("test_prefixtbl_client_local")
->where("gender = :gender", array(":gender"=>$gender))
->queryAll();

または、次のように Active Record 自体 (チュートリアルはこちら)を使用できます。

$clientLocalArrayObjects = ClientLocal::model()->findAllByAttributes(array(
"gender" => $gender
));

ご不明な点がございましたら、お尋ねください。:)

于 2012-12-20T11:00:44.173 に答える