dql查询生成器Doctrine 1.2

时间:2011-01-02 19:06:17

标签: php doctrine dql doctrine-1.2

那么在学说中构建查询是否更容易?在这 只有一个参数,但有些情况可能会有用户名,标记名等。 其中一些可能为空或空。我只需要简单的StringBuilder实现。 我尝试用LEFT JOIN进行DQL查询,但我不知道如何进行DQL查询?

public function getTagsByApiKey($apikey='', $limit = 20){
        $whereArray = array();
        $whereClauseArray = array();



        if($apikey != ''){
            array_push($whereClauseArray, ' f.apikey = :apikey  ');
            $whereArray[':apikey'] = $apikey;
        }

        $whereClause = '';
        for ($i=0; $i < sizeof($whereClauseArray); $i++) { 
            if($i>0){
                $whereClause .= ' AND ';
            }
            $whereClause .= $whereClauseArray[$i];

        }


        $q = Doctrine_Query::create()
            ->from('Tag t')
            ->leftJoin('t.Feedback f')
            ->where($whereClause, $whereArray)
            ->orderBy('t.count ASC')
            ->limit($limit);
        return $q->execute();

}

1 个答案:

答案 0 :(得分:1)

使用Doctrine 2,您可以用SQL方式编写DQL(SELECT * FROM table t....)。

在Doctrine 1.x中,您可以做的是在不同阶段构建查询。

这只是一个没有意义的简单例子,所以你明白我的意思:

$q = Doctrine_Query::create()
            ->from('Tag t')
            ->leftJoin('t.Feedback f');

$array = array("user" => "frank", "tag" => "music");
foreach($array as $key => $value) {
    $q = $q->andWhere("t.$key = ?", $value);
}

$q = $q->orderBy('t.count ASC')
       ->limit($limit);

return $q->execute();