$this->shoe = Doctrine::getTable('Shoes')->find($request->getParameter('ids'));
i jest wszystko OK.
Natomiast gdy robię to takim sposobem:
$this->shoe = Doctrine::getTable('Shoes') ->createQuery('s') ->where('ids = ?', $request->getParameter('ids')) ->execute();
wywala błąd nieznanej metody getTytul() itd ...
W czym tkwi błąd
