mihai-stancu/doctrine-types-extra 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

mihai-stancu/doctrine-types-extra

Composer 安装命令:

composer require mihai-stancu/doctrine-types-extra

包简介

Doctrine2 storing `UUID()` as BINARY(16) and `UUID_SHORT()` as BIGINT for MySQL.

README 文档

README

Doctrine2's default GUID works as a native data type for platforms that support it (Oracle, MSSQL, PostgreSQL) but falls back to VARCHAR in others (MySQL, SQLite).

  • BINARY: binary_guid is an alternative of the default guid type which uses BINARY(16) on all platforms (or VARBINARY(16) on platforms without fixed length binary). The default GeneratedValue (UUID) is used as the generator function and hex2bin / bin2hex converters are used. BinaryGuidType extends BinaryType.
  • SHORT: short_guid is an extension of the default guid type which uses BIGINT as a fallback type for UUIDs in MySQL instead of VARCHAR. The UUID_SHORT() function from MySQL is used as the generator function and the results are handled as integers. ShortGuidType extends GuidType.

N.B.: !!! MySQl's short UUIDs are not standard UUIDs and they are not guaranteed to be unique across (...more than 256...) servers.

Sets and enums are not supported in Doctrine2 by default but they can be treated as strings in most scenarios.

  • SET: set is a naive implementation of MySQL's set data type represented in PHP as an array of strings. The type only supports generating create statements and implode / explode converters. SetType extends SimpleArrayType.

Usage

Adding the following lines in your app/config.yml (for Symfony2 projects) should do the trick:

doctrine:
    dbal:
        types:
            binary_guid: MS\DoctrineTypes\DBAL\Types\BinaryGuidType
            short_guid: MS\DoctrineTypes\DBAL\Types\ShortGuidType

            set: MS\DoctrineTypes\DBAL\Types\SetType


        mapping_types:
            binary_guid: binary_guid
            short_guid: short_guid

            set: set

And adding the following Annotation comments in your entity definitions should finish the job:

    /**
     * @Id
     * @Column(type="binary_guid")
     * @GeneratedValue(strategy="UUID")
     */

or

    /**
     * @Id
     * @Column(type="short_guid")
     * @GeneratedValue(strategy="CUSTOM")
     * @CustomIdGenerator(class="MS\DoctrineTypes\ORM\Id\ShortGuidGenerator")
     */

or

    /**
     * @Column(type="set", options={ "values"={"value1", "value2"} })
     */

统计信息

  • 总下载量: 1.84k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 2
  • Forks: 2
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-07-07