gpt4 book ai didi

symfony1 - 使用 Symfony 中的 Doctrine 更新多个列

转载 作者:行者123 更新时间:2023-12-02 19:21:16 24 4
gpt4 key购买 nike

我必须更新 Symfony 中的多个列,但我找不到解决方案......所以,我想这样做:

$q = Doctrine_Query::create()
->update('WebusersTable q')
->set('q.login_name','?','John')
->where('q.webuser_id=?',1)
->execute();

好的,这可行,但我必须用几列来完成。我尝试过类似的方法,但它不起作用:

$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();

关于symfony1 - 使用 Symfony 中的 Doctrine 更新多个列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4803436/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com