chukShirley
8/15/2014 - 8:50 PM

ZF2 DB configuration for IBM DB2

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',
		),
	)
);