wheregroup/doctrine-dbal-shims
最新稳定版本:v1.2.0
Composer 安装命令:
composer require wheregroup/doctrine-dbal-shims
包简介
Doctrine DBAL / ORM convenience for mixed multi-connection setups
README 文档
README
Included is an event subscriber that automatically sets Oracle session variables required by DBAL and Doctrine ORM to work properly (date formats etc).
Unlike the DBAL default implementation, this can be added globally, and will check / only act on Oracle DBAL connections. All other connection types will be completely left alone.
This makes it easier to use in mixed multi-connection setups, and indeed safe to use with zero Oracle connections.
Usage
With doctrine/dbal-bundle installed, you can register the included AddOracleSessionInitPass
into your Symfony container build, or use the PassIndex to do it for you.
# Bundle class public function build(ContainerBuilder $container) { <...> PassIndex::autoRegisterAll($container); <...> }
# Kernel class public function buildContainer() { $container = parent::buildContainer(); <...> PassIndex::autoRegisterAll($container); <...> return $container; }
Standalone DBAL
Without Symfony and the Doctrine bundle, compiler passes won't work.
The OnDemandOracleSessionInit subscriber instance needs to be added to the connection's event manager in some other way to do anything.
统计信息
- 总下载量: 10.17k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-11-27