0

试图执行一个始终不会发生的 Doctrine 查询:我拥有的代码:

$q = Doctrine_Query::Create()->select('l.lid')->from('lessons l')->where('l.topic =?','Title of topic')

$result = $q->fetchOne() ; 

有趣的是,这返回了错误的列,不是l.lid但是l.someOtherColumn

所以不确定我在哪里搞砸了,非常感谢您的评论和批评。

谢谢!

4

1 回答 1

0

尝试使用 Create('table_name t ') 而不是 ->from() ....

于 2012-03-16T12:03:45.273 回答