从表中获取数据时出现以下错误。
500 |内部服务器错误| Doctrine_Exception
无法找到class 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();
但是,我没有像上面的格式那样得到另一个表的任何错误。请检查并建议我。
答案 0 :(得分:0)
更改此
->where('u.tasks_id = ?', $arr_values['tasks_id'])
到
->andwhere('u.tasks_id = ?', $arr_values['tasks_id'])