3

使用 Symfony-2.1 和 Doctrine-2.3。我有多个数据库,需要进行跨数据库连接,所以我遵循了以下建议:

并设置多个连接和一个实体管理器。这里是app/config/config.yml

doctrine:
    dbal:
        default_connection: db1
        connections:
            db1:
                driver:   pdo_mysql
                host:     127.0.0.1
                dbname:   db1
            db2:
                driver:   pdo_mysql
                host:     127.0.0.1
                dbname:   db2
    orm:
        default_entity_manager: default
        auto_generate_proxy_classes: %kernel.debug%
        entity_managers:
            default:
                auto_mapping: true
                mappings:
                    FirstBundle:
                        type:   annotation
                        dir:    Model
                        prefix: NoiseLabs\FirstBundle\Model
                    SecondBundle:
                        type:   annotation
                        dir:    Model
                        prefix: NoiseLabs\SecondBundle\Model

中的实体类FirstBundle

namespace NoiseLabs\FirstBundle\Model;

/**
 * @ORM\Entity
 * @ORM\Table(name="db1.table1")
 */
class FirstEntity
{
    /**
     * @ORM\Id
     * @ORM\Column(name="id", type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;
}

中的实体类SecondBundle

namespace NoiseLabs\SecondBundle\Model;

/**
 * @ORM\Entity
 * @ORM\Table(name="db2.table2")
 */
class SecondEntity
{
    /**
     * @ORM\Id
     * @ORM\Column(name="id", type="integer")
     * @ORM\GeneratedValue(strategy="AUTO")
     */
    protected $id;

    /**
     * @ORM\ManyToOne(targetEntity="NoiseLabs\FirstBundle\Model\FirstEntity")
     * @ORM\JoinColumn(name="firstId", referencedColumnName="id", onDelete="CASCADE")
     */
    protected $first;
}

现在,问题app/console doctrine:schema:update --dump-sql只是检测 (default connection) 中的架构更改db1.tables。如果我将默认连接设置为db2它只会输出与db2.tables.

我已经检查app/console doctrine:mapping:info并正在映射所有实体类。

这是 Doctrine/Symfony 的限制还是我需要调整我的配置?谢谢。

4

1 回答 1

0

每个实体管理器只能有一个连接。将默认实体管理器一分为二。app/console doctrine:schema:update接受一个可选参数 ( em) 来指定正在使用的实体管理器。你必须运行它两次:

app/console doctrine:schema:update --dump-sql em="default"
app/console doctrine:schema:update --dump-sql em="my_second_em"

Symfony2 食谱中还有一篇短文(如何使用多个实体管理器和连接)值得一读。

于 2012-12-26T02:04:05.590 回答