2
내 컨트롤러에 코드를 다음 있습니다 :createCommand없이 데이터베이스에서 정보를 검색하는 방법은 무엇입니까?
$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
없이는이 기능을 깨닫지 못했습니다. 내가 어떻게 해?