Doctrine2映射枚举

时间:2016-10-21 08:34:19

标签: php doctrine-orm enums doctrine

我正在使用Doctrine 2.5.4和纯PHP 5编写自己的CMS。 在建设时,我反驳了这个错误:

  

致命错误:未捕获异常'Doctrine \ DBAL \ DBALException',并显示消息'请求未知数据库类型枚举,Doctrine \ DBAL \ Platforms \ MySqlPlatform可能不支持它。'在/var/www/html/xxxx.com/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php:423堆栈跟踪:#0 /var/www/html/xxxx.com/public_html /vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/MySqlSchemaManager.php(126):Doctrine \ DBAL \ Platforms \ AbstractPlatform-> getDoctrineTypeMapping('enum')#1 /var/www/html/xxxxx.com /public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php(820):Doctrine \ DBAL \ Schema \ MySqlSchemaManager-> _getPortableTableColumnDefinition(Array)#2 /var/www/html/xxxx.com /public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php(175):Doctrine \ DBAL \ Schema \ AbstractSchemaManager-> _getPortableTableColumnList('bonus_top _....','xxxx',Array) /var/www/html/xxxx.com/public_html/vendor中的#3 /var/www/html/xxxx.com/public_html/vendor/doctrine/dbal/lib/Doctrine/DBAL/Schema/AbstractSchemaManager.php(281)第423行的/doctrine/dbal/lib/Doctrine/DBAL/Platforms/AbstractPlatform.php   我的config.php:

<?php
ini_set("display_errors",true);
date_default_timezone_set("Asia/Hongkong");
define('TIMER_START', microtime( true ) );  
define('DS', DIRECTORY_SEPARATOR );
define('ROOT_DIR', realpath( dirname( __FILE__ ) ). DS );   
define('DAODIR', ROOT_DIR.'DAO'.DS );
define('MNGDIR', ROOT_DIR.'manager'.DS );
define('HDLDIR' , ROOT_DIR.'handler'.DS );
define('TPLDIR', ROOT_DIR.'template'.DS );  
define('SKNDIR', TPLDIR.'skin'.DS );    
define('MDLDIR', ROOT_DIR.'model'.DS );             
define('DBN', 'xxxx' );     
define('HOST', 'xxxx' );        
define('USR', 'xxxx' );
define('PWD','xxxx');
require_once "vendor/autoload.php";

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

$paths = array(MDLDIR);
$isDevMode = false;

// the connection configuration
$dbParams = array(
    'driver'    => 'pdo_mysql',
    'host'      => HOST,
    'user'      => USR,
    'password'  => PWD,
    'dbname'    => DBN,
    'charset'   =>'utf8',
);

$config = Setup::createAnnotationMetadataConfiguration($paths, $isDevMode); 
$em = EntityManager::create($dbParams, $config);    
?>

和我的news.php

<?php
 /**
 *   @Entity @Table(name="news")
 */
 class News{
 /**
 *  @nid @Column(type="integer")  // **my id column is nid** 
 *  @GeneratedValue     
 */
 public $id;
 /** @author @Column(type="string")*/
 public $author;
 /** @date @Column(type="integer")*/
 public $date;
 /** @title @Column(type="string")*/
 public $title;
 /**@content @Column(type="text")*/
 public $content;
 /**@full @Column(type="text")*/
 public $full;
 /**@title_en @Column(type="string")*/
 public $title_en;
 /**@content_en @Column(type="text")*/
 public $content_en;
 /**@full_en @Column(type="text")*/
 public $full_en;
 /**@flink @Column(type="text")*/
 public $flink;
 /**@img @Column(type="text")*/
 public $img;   
 }
 ?>

我在mysql中的表news

+------------+--------------+------+-----+---------+----------------+
| Field      | Type         | Null | Key | Default | Extra          |
+------------+--------------+------+-----+---------+----------------+
| nid        | int(11)      | NO   | PRI | NULL    | auto_increment |
| author     | varchar(50)  | NO   |     |         |                |
| date       | int(11)      | NO   |     | 0       |                |
| title      | varchar(255) | NO   |     |         |                |
| content    | text         | NO   |     | NULL    |                |
| full       | text         | NO   |     | NULL    |                |
| title_en   | varchar(255) | NO   |     |         |                |
| content_en | text         | NO   |     | NULL    |                |
| full_en    | text         | NO   |     | NULL    |                |
| flink      | text         | NO   |     | NULL    |                |
| img        | text         | NO   |     | NULL    |                |
+------------+--------------+------+-----+---------+----------------+

我尝试修复为this article,但没有成功。 我为this link做了设置原则。 我真的不知道为什么。 请帮我。 提前谢谢。

P / s:我不使用像enum那样奇怪的类型......(新手T_T)。

1 个答案:

答案 0 :(得分:1)

由于数据库是我的公司不是我的,我不知道该学说会扫描我的所有数据库,但不是我为配置(只有一个数据能够进行演示)。 当我注意到错误发现了另一张桌子时。

_getPortableTableColumnList('bonus_top_....', 'xxxx', Array) #3 

所以我确实修复了这个具有枚举类型的表。 在vendor / doctrine / dbal / lib / Doctrine / DBAL / Platforms / MySqlPlatform.php中 添加"enum" => 'string'

谢谢大家。 抱歉让人不安。