nealis/dbal-ibmi
Composer 安装命令:
composer require nealis/dbal-ibmi
包简介
Fork of alanseiden/doctrine-dbal-ibmi with edge unmerged commits
README 文档
README
Doctrine DBAL module for DB2 on the IBM i platform.
The majority of the work done to make DBAL work on i was done by @cassvail and can be seen in the PR doctrine/dbal#910 - credit where it's due!
Usage
First, install with Composer:
$ composer require alanseiden/doctrine-dbal-ibmi
In your connection configuration, use this specific DB2Driver class, for
example, when configuring for a Zend Expressive application:
<?php return [ 'doctrine' => [ 'connection' => [ 'orm_default' => [ 'driverClass' => \DoctrineDbalIbmi\Driver\DB2Driver::class, 'params' => [ 'host' => '...', 'user' => '...', 'password' => '...', 'dbname' => '...', 'persistent' => true, 'driverOptions' => [ 'i5_naming' => DB2_I5_NAMING_OFF, 'i5_lib' => '...', ], ], ], ], ], ];
统计信息
- 总下载量: 782
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-03-26