本文介绍了在Symfony中使用Doctrine更新多个列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我必须更新Symfony中的多个列,但我无法找到解决方案...
所以,我想这样做:
I have to update multiple columns in Symfony, but I can nowhere find the solution...So, I'd like to do it in this way:
$q = Doctrine_Query::create()
->update('WebusersTable q')
->set('q.login_name','?','John')
->where('q.webuser_id=?',1)
->execute();
确定,但是我必须用几个列。
我尝试过这样的东西,但它不起作用:
OK, that works, but I have to do it with several columns.I tried something like this, but it doesn't work:
$q = Doctrine_Query::create()
->update('WebusersTable q')
->set('q.login_name,q.name','?','kaka,pisa')
->where('q.webuser_id=?',1)
->execute();
推荐答案
尝试:
$q = Doctrine_Query::create()
->update('WebusersTable q')
->set('q.login_name', 'John')
->set('q.name', 'Another value')
->where('q.webuser_id=?',1)
->execute();
这篇关于在Symfony中使用Doctrine更新多个列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!