6

Doctrine の配列型がシリアライズ/アンシリアライズを使用しており、テキストや整数などの「単純な」フィールド内にデータを格納していることがわかりました。

しかし、配列 (主にテキスト) としていくつかのフィールドを持つ postgres データベースを使用するプロジェクトがあります。そのデータベースをDoctrineで使いたいです。それを処理する方法はありますか?

ありがとう

編集 :

ps: Craig Ringer のおかげで、SQL 配列が良い習慣になり得ることがわかりました。

たぶん、カスタムタイプを作成できます。すでにそれを作った人はいますか?

編集2:

問題の半分は解決しました:

<?php
namespace mysite\MyBundle\Types;

use Doctrine\DBAL\Types\Type;
use Doctrine\DBAL\Platforms\AbstractPlatform;

 /**
  * My custom postgres text array datatype.
 */
class TEXTARRAY extends Type
{
     const TEXTARRAY = 'textarray'; // modify to match your type name

    public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
    {
        return $platform->getDoctrineTypeMapping('TEXTARRAY');
    }

    public function convertToPHPValue($value, AbstractPlatform $platform)
    {
    // This is executed when the value is read from the database. Make your conversions here, optionally using the $platform.
        return explode('","', trim($value, '{""}') );
    }

    public function convertToDatabaseValue($value, AbstractPlatform $platform)
    {
    // This is executed when the value is written to the database. Make your conversions here, optionally using the $platform.

        settype($value, 'array'); // can be called with a scalar or array
        $result = array();
        foreach ($set as $t) {
            if (is_array($t)) {
                $result[] = to_pg_array($t);
            } else {
                $t = str_replace('"', '\\"', $t); // escape double quote
                if (! is_numeric($t)) // quote only non-numeric values
                    $t = '"' . $t . '"';
                $result[] = $t;
            }
        }
        return '{' . implode(",", $result) . '}'; // format      

    }

    public function getName()
    {
        return self::TEXTARRAY; // modify to match your constant name
    }
}

そしてコントローラー

<?php

namespace mysite\MyBundle;

 use Symfony\Component\HttpKernel\Bundle\Bundle;
 use Doctrine\ORM\EntityManager;
 use Doctrine\DBAL\Types\Type;

 class mysiteMyBundle extends Bundle
{
    public function boot() {
        Type::addType('textarray', 'mysite\MyBundle\Types\TextArray');
        $em = $this->container->get('doctrine.orm.default_entity_manager');
        $conn = $em->getConnection();
        $conn->getDatabasePlatform()->registerDoctrineTypeMapping('TEXTARRAY', 'textarray');
    }
}

これらの配列内を 'myword' = ANY(myarrayfield) のようなクエリで検索したいのはわかっています...手がかりを持っている人はいますか?

#doctrine2 チャンネルの誰かが私にカスタム DQL 関数を作成するように言ったので、ここにあります:

<?php
use Doctrine\ORM\Query\Lexer;
use Doctrine\ORM\Query\AST\Functions\FunctionNode;

class ANY extends FunctionNode {

    public $field;


    public function getSql(\Doctrine\ORM\Query\SqlWalker $sqlWalker) {
        return 'ANY(' .
            $this->field->dispatch($sqlWalker) . ')';
    }

    public function parse(\Doctrine\ORM\Query\Parser $parser) {
        $parser->match(Lexer::T_IDENTIFIER);
        $parser->match(Lexer::T_OPEN_PARENTHESIS);
        $this->field = $parser->StringPrimary();
        $parser->match(Lexer::T_CLOSE_PARENTHESIS);
    }
}

しかし、次のようなものを含む配列を使用して、クエリビルダーでクエリを作成します

$arr[] = $qb->expr()->like($alias.".".$field, $qb->expr()->literal('%'.trim($val).'%') );

そしてそれらに参加する

if(count($arr) > 0) $qb->Where(new Expr\Orx($arr));
else unset($arr);

では、私の機能の使い方は?:\

4

1 に答える 1

5

QueryBuilder 内では、カスタム関数を記述するだけで使用できます。

$qb->where("ANY(a.b)");

詳細情報:

  1. Symfony アプリケーションの "doctrine" 設定セクションにカスタム タイプを追加できます。
  2. カスタム DQL 関数についても同じことが言えます。

Symfony 2.1 の構文については、CLI の「config:dump-reference DoctrineBundle」コマンドを参照してください。それ以外の場合は、symfony.com Web サイトを参照してください。

于 2012-08-22T09:22:38.977 に答える