Skip to content

Instantly share code, notes, and snippets.

@chukShirley
Created August 15, 2014 20:50
Show Gist options
  • Save chukShirley/e6d98595e51d8ae031f4 to your computer and use it in GitHub Desktop.
Save chukShirley/e6d98595e51d8ae031f4 to your computer and use it in GitHub Desktop.
ZF2 DB configuration for IBM DB2
return array(
'db' => array(
'driver' => 'IbmDb2',
'platform' => 'IbmDb2',
'platform_options' => array('quote_identifiers' => false),
'database' => '', // IBM i serial number or db directory entry name goes here
'username' => '', // user id goes here
'password' => '', // password goes here
'driver_options' => array(
'i5_naming' => DB2_I5_NAMING_ON,
'i5_libl' => 'QS36F WWW',
),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment