我的控制器中有以下代码:
$listproduct=Yii::app()->db->createCommand()
->select('product')
->from('product_form')
->where('product_name=:product_name and type=:type', array(':product_name'=>'HP', ':type'=>$gettype ))
->queryRow();
$gettype
负责检索产品的类型。(例如,如果产品名称是 HP 并且type($gettype)
是 PC,它将显示类型为 PC 的 HP 产品)。没有createCommand
. 我该怎么做?