【发布时间】:2013-10-23 14:34:53
【问题描述】:
从表中获取数据时出现以下错误。
500 |内部服务器错误 | Doctrine_Exception
找不到类 tasks_cmets
$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();
但是,对于上述格式的另一个表格,我没有收到任何错误。请检查并建议我。
【问题讨论】:
标签: php symfony1 doctrine-1.2