1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Doctrine\DBAL\Driver\IBMDB2;
- use Doctrine\DBAL\Driver\AbstractDB2Driver;
- /**
- * IBM DB2 Driver.
- */
- class DB2Driver extends AbstractDB2Driver
- {
- /**
- * {@inheritdoc}
- */
- public function connect(array $params, $username = null, $password = null, array $driverOptions = [])
- {
- if (! isset($params['protocol'])) {
- $params['protocol'] = 'TCPIP';
- }
- if ($params['host'] !== 'localhost' && $params['host'] !== '127.0.0.1') {
- // if the host isn't localhost, use extended connection params
- $params['dbname'] = 'DRIVER={IBM DB2 ODBC DRIVER}' .
- ';DATABASE=' . $params['dbname'] .
- ';HOSTNAME=' . $params['host'] .
- ';PROTOCOL=' . $params['protocol'] .
- ';UID=' . $username .
- ';PWD=' . $password . ';';
- if (isset($params['port'])) {
- $params['dbname'] .= 'PORT=' . $params['port'];
- }
- $username = null;
- $password = null;
- }
- return new DB2Connection($params, $username, $password, $driverOptions);
- }
- /**
- * {@inheritdoc}
- */
- public function getName()
- {
- return 'ibm_db2';
- }
- }
|