试图执行一个始终不会发生的 Doctrine 查询:我拥有的代码:
$q = Doctrine_Query::Create()->select('l.lid')->from('lessons l')->where('l.topic =?','Title of topic')
$result = $q->fetchOne() ;
有趣的是,这返回了错误的列,不是l.lid
但是l.someOtherColumn
所以不确定我在哪里搞砸了,非常感谢您的评论和批评。
谢谢!
试图执行一个始终不会发生的 Doctrine 查询:我拥有的代码:
$q = Doctrine_Query::Create()->select('l.lid')->from('lessons l')->where('l.topic =?','Title of topic')
$result = $q->fetchOne() ;
有趣的是,这返回了错误的列,不是l.lid
但是l.someOtherColumn
所以不确定我在哪里搞砸了,非常感谢您的评论和批评。
谢谢!