I have a situation where I want to assemble a Doctrine select query based on weather certain params are empty or not For example, if there was a $slug variable that was optional, i'd want something like this:

function get_bio($slug = '')
{
     $q = Doctrine_Query::create()
        ->from('Bio b');

     if (!empty($slug))
     {
          $q .= $q->where('b.slug = ?', $slug);
     }
 }

I know thats not the correct syntax, but how would I assemble something like that?

link|improve this question

You should take a look at Doctrine's QueryBuilder. – xyu Jan 24 at 19:49
feedback

closed as too localized by casperOne Jan 24 at 21:06

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

3 Answers

up vote 0 down vote accepted

You are treating the query object as a string rather than an object. Try this instead:

function get_bio($slug = '')
{
     $q = Doctrine_Query::create()
        ->from('Bio b');

     if (!empty($slug))
     {
          $q->where('b.slug = ?', $slug);
     }
 }

Note the call to $q->where() operates directly on the query object $q, so you do not have to assign the return value to anything (it returns a reference to the query object itself so that you can chain method calls).

Note also that if you are planning on adding multiple where clauses, you will probably want to use andWhere() instead of where().

link|improve this answer
feedback

Why don't you do just two Queries? In my opinion it doesn't make sense that you do a function for this, but only my opinion. I would do it like this way:

if ($slug != NULL) {
$q = Doctrine_Query::create()
    ->from('Bio b');
    ->where('b.slug = ?', $slug);
}
else {
$q = Doctrine_Query::create()
    ->from('Bio b');
}

This is not the correct syntax too. :) Hope I could help.

Cheers!

link|improve this answer
well unfortunately, there's 3 parameters in my situation. So to account for all the permutations, i would need quite a few if/else statements. Seems to be more efficient to just add to the query as needed – dtj Jan 21 at 18:36
feedback

Answer by dtj


Apparently, I wasn't too far off. Here's the correct syntax:

function get_bio($slug = '')
{
     $q = Doctrine_Query::create()
        ->from('Bio b');

     if (!empty($slug))
     {
          $q = $q->where('b.slug = ?', $slug);
     }
 }

As simple as removing a dot :)

link|improve this answer
@dtj Technically, the $q = part is not even necessary. If you just do $q->where(...), that will have the same effect. – Phoenix Jan 24 at 23:01
feedback

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