find dbysql in yii返回空值


FindBySql in yii returns null value

我是新来的。我正面临着一个问题与finddbysql方法。当我试图通过传递Mysql查询和参数来获取记录时,它返回给我一个空值。

这里我的代码看起来像这样。在模型中,我定义了一个函数getCountry()来获取国家名称。
class StateMaster extends CActiveRecord
{
    public function tableName()
    {
        return 'T_State_Master';
    }

    public function getCountry($c_id)
    {       
        //return array(StateMaster::model()->findBySql("select C_Name from T_Country_Master where C_Id=:CountryId;",array(':CountryId'=>$c_id)));       
        $result = array(StateMaster::model()->findBysql("select C_Name from T_Country_Master where C_Id={$c_id}"));
        return $result;
    }
    /**
     * Returns the static model of the specified AR class.
     * Please note that you should have this exact method in all your CActiveRecord descendants!
     * @param string $className active record class name.
     * @return StateMaster the static model class
     */
    public static function model($className=__CLASS__)
    {
        return parent::model($className);
    }
}

然后在我的视图文件中试图通过提供国家Id来获取国家名称。

<?php $this->widget('zii.widgets.CDetailView', array(
    'data'=>$model,
    'attributes'=>array(        
        array(
        'label'=>'State Name',      
        'value'=>$model->S_Name,            
        ),
        array(
        'label'=>'Country Name',        
        'value'=>$model->getCountry($model->C_Id),          
        ),      
        array(
        'label'=>'Created Date',        
        'value'=>Yii::app()->dateFormatter->format("dd-MMM-yyyy", $model->CreatedDt),           
        ),
        array(
        'label'=>'Created By',      
        'value'=>$model->CreatedBy,         
        ),      
    ),
)); ?>

我是否想知道为什么它不给我的结果。我已经检查了传递给它的参数,它成功地传递了。请给我一个解决办法。提前感谢

将函数改为:

public function getCountry($c_id)
{
    $query = "select C_Name from T_Country_Master where C_Id={$c_id}";
    //return Yii::app()->db->createCommand($query)->queryAll(); // returns an array, so in your detail view, you must handle it first
    return Yii::app()->db->createCommand($query)->queryScalar();
}

试试这个方法,但如果我是你,我会使用第一个

public function getCountry($c_id)
{
    $query = "select C_Name from T_Country_Master where C_Id={$c_id}";
    return Yii::app()->db->createCommand($query)->queryScalar();
}
OR
public function getCountry($c_id)
    {       
        $criteria = new CDbCriteria;  
        $criteria->select="C_Name";
        $criteria->addCondition('C_Id = $c_id');
        $result = StateMaster::model()->find($criteria);
        return $result;
    }