我正在尝试更新 mysql 数据库中的一行。我遇到了一些问题,而且我是学说新手(不幸的是 1.2)dql,我想我因为“集合”部分而遇到错误,但我在任何地方都找不到正确的方法......
$q = Doctrine_Query::create()
->update('OfferUser')
->set('price_alone', $price_alone)
->set('price_group', $price_group)
->set('comments', $comments)
->where('id=?', $id);