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)
                    ->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.

link|improve this question

76% accept rate
feedback

1 Answer

up vote 3 down vote accepted

use like :

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

more :

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

link|improve this answer
great thanks. i did miss that in the documentation.. – Tom Haigh Aug 17 '10 at 7:57
glad to hear , I'd be happy if you accept my answer – Haim Evgi Aug 17 '10 at 8:09
have done, sorry, it made me wait 6 minutes and then i forgot for a bit – Tom Haigh Aug 17 '10 at 8:31
@tom : Heartfelt thanks – Haim Evgi Aug 17 '10 at 8:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.