2017 © Pedro Peláez
 

library dbal-ibmi

Fork of alanseiden/doctrine-dbal-ibmi with edge unmerged commits

image

nealis/dbal-ibmi

Fork of alanseiden/doctrine-dbal-ibmi with edge unmerged commits

  • Monday, March 26, 2018
  • by sangio90
  • Repository
  • 2 Watchers
  • 2 Stars
  • 73 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 43 % Grown

The README.md

doctrine-dbal-ibmi

Doctrine DBAL module for DB2 on the IBM i platform., (*1)

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!, (*2)

Usage

First, install with Composer:, (*3)

$ composer require alanseiden/doctrine-dbal-ibmi

In your connection configuration, use this specific DB2Driver class, for example, when configuring for a Zend Expressive application:, (*4)

<?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' => '...',
                    ],
                ],
            ],
        ],
    ],
];

The Versions

26/03 2018

dev-master

9999999-dev

Fork of alanseiden/doctrine-dbal-ibmi with edge unmerged commits

  Sources   Download

MIT

The Requires

 

by Nealis