从表中获取数据时出现以下错误。
500 | 内部服务器错误 | 教义异常
找不到类 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();
但是,对于上述格式的另一个表,我没有收到任何错误。请检查并建议我。