テーブルからデータをフェッチしているときに、以下のエラーが発生します。
500 | 内部サーバー エラー | Doctrine_Exception
クラス tasks_comments が見つかりませんでした
$r = Doctrine_Query::create()
->select('u.worked_hours')
->from('tasks_comments u')
->where('u.tasks_id = ?', $arr_values['tasks_id'])
->andwhere('u.id != ?', $arr_values['id']);
$results1 = $r->execute();
しかし、上記の形式の別のテーブルではエラーは発生しませんでした。確認して提案してください。