vote up 0 vote down star

I have a select query I'd like to perform with Doctrine:

 $resultset = Doctrine_Query::create()
    ->select("t.code, t.description, case when t.id_outcome = 1 then 1 else 0 end as in_progress")
    ->from('LuOutcome t')
    ->orderBy('t.rank')
    ->fetchArray();

And it barfs on the 'case'. The documentation does not mention that it's possible (or not).

I'm wondering if Doctrine lacks the capacity to do so. If so, it's a rather major omission. Does anyone know of a work-around?

flag

1  
please add a PHP tag to this question – tzup Oct 14 at 8:48
done... in at least 15 characters :-/ – dland Oct 16 at 21:45

2 Answers

vote up 1 vote down check

The BNF grammar for the Doctrine Query Language doesn't seem to contain anything related to a CASE construct.

link|flag
vote up 0 vote down

I recommend you to not use this CASE syntax for solving this problem. It looks tricky.

Why don't you want to

$resultset = Doctrine_Query::create()
    ->select("t.code, t.description, t.id_outcome")
    ->from('LuOutcome t')
    ->orderBy('t.rank')
    ->fetchArray();

and then loop through $resultset and create this field (in_progress) manually depending on (id_outcome) value. You can use some small simple tiny method for that.

Benefits:

  • simple
  • readable
link|flag
1  
Bad idea. Looping through a resultset in code to perform fixups is a sign that you haven't asked your database to do enough. I find this is a common trait among PHP developers. Whether it looks tricky is besides the point: the case statement in SQL is very useful, and it's a pity that Doctrine doesn't recognise it. – dland Oct 21 at 12:57

Your Answer

Get an OpenID
or

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