0
젠드 데이터베이스 테이블 라이브러리에 문제가 있습니다.젠드 선택 문제
죄송합니다, 나는 이전의 문제를 해결하지만, 기능 여기
Message: Method "fetchAll" does not exist and was not trapped in __call()
또 다른 하나있어 내가 대신 $이의
//setIntegrityCheck to false to allow joins
$roomModel = new self();
$select = $roomModel->select(Zend_Db_Table::SELECT_WITH_FROM_PART)
->setIntegrityCheck(FALSE);
//performs join aliasing table room_type to t
$select->join(array('t' => 'room_types'), 't.room_type_id = room.room_type_id AND num_beds> '.$number_beds);
////performs join aliasing table room_status to s
$select->join(array('s' => 'room_statuses'), 's.room_status_id = room.room_status_id');
$select->join(array('chin' => 'checkin'), 'chin.checkin_date IS NOT BETWEEN `'.$checkin.'` AND `'.$checkout.'`');
$select->join(array('chout' => 'checkout'), 'chout.checkout_date IS NOT BETWEEN `'.$checkin.'` AND `'.$checkout.'`');
$result = $this->fetchAll($select);
return $result;
당신의 예제에서'$ this'는 무엇입니까? –