2

我在 Doctrine 中创建了一个自定义的“REPLACE”功能。但是我有一个错误,当我使用它时。

$result->andWhere("replace(weight,X,C) <= :weight_from")
       ->setParameter('weight_from',$data['weight_from']);

替换功能:

namespace Doctrine\ORM\Query\AST\Functions;

use Doctrine\ORM\Query\Lexer;

/**
 * "REPLACE" "(" StringPrimary "," StringSecondary "," StringThird ")"
 *
 * 
 * @link    www.prohoney.com
 * @since   2.0
 * @author  Igor Aleksejev
 */
class ReplaceFunction extends FunctionNode {

    public $stringPrimary;
    public $stringSecondary;
    public $stringThird;

    /**
     * @override
     */
    public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker) {
        return $sqlWalker->getConnection()->getDatabasePlatform()->getReplaceExpression(
                        $this->stringPrimary, $this->stringSecondary, $this->stringThird
        );
    }

    /**
     * @override
     */
    public function parse(\Doctrine\ORM\Query\Parser $parser) {
        $parser->match(Lexer::T_IDENTIFIER);
        $parser->match(Lexer::T_OPEN_PARENTHESIS);
        $this->stringPrimary = $parser->StringPrimary();
        $parser->match(Lexer::T_COMMA);
        $this->stringSecondary = $parser->StringPrimary();
        $parser->match(Lexer::T_COMMA);
        $this->stringThird = $parser->StringPrimary();
        $parser->match(Lexer::T_CLOSE_PARENTHESIS);
    }

}

AbstracPlatfrom.php 包含:

/**
 * Returns the replace of a text field.
 *
 * @param string $column
 * @param string $x
 * @param string $y
 *
 * @return string
 */
public function getReplaceExpression($column,$x,$y)
{
    return "REPLACE($column,'$x','$y')";
} 

错误:

[
   {
      "message":"[Syntax Error] line 0, col 103: Error: Expected '.' or '(', got 'weight'",
      "class":"Doctrine\\ORM\\Query\\QueryException",
      "trace":[
         {
            "namespace":"",
            "short_class":"",
            "class":"",
            "type":"",
            "function":"",
            "file":"C:\\webserver\\symfony\\vendor\\doctrine\\orm\\lib\\Doctrine\\ORM\\Query\\QueryException.php",
            "line":44,
            "args":[

            ]
         },
         {
            "namespace":"Doctrine\\ORM\\Query",
            "short_class":"QueryException",
            "class":"Doctrine\\ORM\\Query\\QueryException",
            "type":"::",
            "function":"syntaxError",
            // ...
4

1 回答 1

2

我有一个类似的问题,我想你应该在你的表字段“weight”(例如“a.”)中添加一个前缀:

$result->andWhere("replace(a.weight,X,C) <= :weight_from")
   ->setParameter('weight_from',$data['weight_from']);
于 2016-02-05T21:58:11.617 回答