1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Doctrine\DBAL\Driver\IBMDB2;
- use Doctrine\DBAL\Driver\AbstractDB2Driver;
- use Doctrine\Deprecations\Deprecation;
- /**
- * IBM DB2 Driver.
- *
- * @deprecated Use {@link Driver} instead
- */
- class DB2Driver extends AbstractDB2Driver
- {
- /**
- * {@inheritdoc}
- */
- public function connect(array $params, $username = null, $password = null, array $driverOptions = [])
- {
- $params['user'] = $username;
- $params['password'] = $password;
- $params['dbname'] = DataSourceName::fromConnectionParameters($params)->toString();
- return new Connection(
- $params,
- (string) $username,
- (string) $password,
- $driverOptions
- );
- }
- /**
- * {@inheritdoc}
- *
- * @deprecated
- */
- public function getName()
- {
- Deprecation::trigger(
- 'doctrine/dbal',
- 'https://github.com/doctrine/dbal/issues/3580',
- 'Driver::getName() is deprecated'
- );
- return 'ibm_db2';
- }
- }
|