"Sınıf bulunamadı"

0 Cevap php

Doktrin ile Symfony 1.4 kullanıyorum. Ben bir doktrin sınıf denilen Görüntü ve bir sorgu ile önceki ve sonraki değerleri bulmak (gereken) bir yöntem var. Soruna kod şöyle görünür:

$q = Doctrine_Core::getTable('Image')->createQuery()
            ->from('Image i')
            ->where('i.id = (select max(a.id) from Image a where ? > a.id and is_active = 1)', $this->getId())
            ->orWhere('i.id = (select min(b.id) from Image b where ? < b.id and is_active = 1)', $this->getId());

Ben her zaman tarifesi "500 | Internal Server Error | Doctrine_Exception bir sınıf bulunamadı" hatası. Herhangi bir ipucu?

0 Cevap