次のクエリを試してみると、配列が生成されます。
$user = Yii::app()->reg->createCommand()
->select('studentID')
->from('Students')
->queryAll();
しかし、CGridview でクエリの値を取得しようとすると、エラーが発生します。
Property "CDbCommand.0" is not defined.
グリッドビューのコードは次のとおりです。
$this->widget('zii.widgets.grid.CGridView', array(
'id'=>'students-grid',
'dataProvider'=> new CSqlDataProvider($user),
));