Doctrine2 Ignore table of database

♀尐吖头ヾ 提交于 2020-01-12 04:47:10

问题


I'm using Doctrine 2 and I want to generate an ORM of my database but I don't want select all tables of the db.

For example, in this db :

  • Table 1 has no primary key
  • Table 2 is normal

I want to choose ONLY Table 2 with this command:

doctrine:mapping:convert --from-database yml ./src/Application/TestBundle/Resources/config/doctrine/metadata/orm --filter="Table2"

I have an error :

Table Table_1 has no primary key. Doctrine does not support reverse engineering from tables that don't have a primary key.

Ok I know , but I don't want my table 1 in my ORM. When my table 1 has primary key i can filter the tables. I've seen Generating a single Entity from existing database using symfony2 and doctrine, but it doesn't work.


回答1:


If you use Doctrine2 without Symfony then you should add this line to your bootstrap:

// With this expression all tables prefixed with Table1 will ignored by the schema tool.
$entityManager->getConnection()->getConfiguration()->setFilterSchemaAssetsExpression("~^(?!Table1)~");

the whole bootstrap looks like

<?php
// bootstrap.php

use Doctrine\ORM\Tools\Setup;
use Doctrine\ORM\EntityManager;


// Include Composer Autoload (relative to project root).
require_once "vendor/autoload.php";

// Create a simple "default" Doctrine ORM configuration for Annotations
$isDevMode = true;
$paths = array(__DIR__."/doctrine/entities");

$config = Setup::createAnnotationMetadataConfiguration($paths, $isDevMode);
//$config = Setup::createYAMLMetadataConfiguration(array(__DIR__."/doctrine/yaml"), $isDevMode);

// the connection configuration
$dbParams = array(
  'driver'   => 'pdo_mysql',
  'user'     => 'username',
  'password' => 'password',
  'dbname'   => 'database',
);

/** @var $entityManager \Doctrine\ORM\EntityManager */
$entityManager = EntityManager::create($dbParams, $config);


// Set the other connections parameters
$conn = $entityManager->getConnection();


$platform = $conn->getDatabasePlatform();
$platform->registerDoctrineTypeMapping('enum', 'string');


// With this expression all tables prefixed with t_ will ignored by the schema tool.
$conn->getConfiguration()->setFilterSchemaAssetsExpression("~^(?!t__)~");



回答2:


Ignoring the table was the solution:

doctrine:
    dbal:
        schema_filter: ~^(?!Table1)~



回答3:


Doctrine first validates your tables and only then executes the command. So you should always have valid DB schema in order to make any operations with it.



来源:https://stackoverflow.com/questions/19489299/doctrine2-ignore-table-of-database

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!