开发者

Doctrine: Bind IN parameters

开发者 https://www.devze.com 2023-01-12 01:38 出处:网络
I was wondering if it is possible to bind an array of integers as a parameter, so I could do something like this?

I was wondering if it is possible to bind an array of integers as a parameter, so I could do something like this?

$q = Doctrine_Query::create()
                    ->update('blah c')
                    ->set('ignored', true)
         开发者_StackOverflow           ->where('id in ?', array(1,2,3,4));

I guess that this isn't possible because it actually binds the variables using the database/PDO, which wouldn't support it.

Apologies if I have missed this in the documentation or another question. Thanks.


use like :

 ->whereIn('id', array(1, 3, 4, 5));

more :

http://www.doctrine-project.org/documentation/manual/1_2/en/dql-doctrine-query-language

0

精彩评论

暂无评论...
验证码 换一张
取 消