_constructDsn($params), $params['charset'] ?? null, $params['sessionMode'] ?? OCI_DEFAULT, $params['persistent'] ?? false ); } catch (OCI8Exception $e) { throw DBALException::driverException($this, $e); } } /** * Constructs the Oracle DSN. * * @param mixed[] $params * * @return string The DSN. */ protected function _constructDsn(array $params) { return $this->getEasyConnectString($params); } /** * {@inheritdoc} */ public function getName() { return 'oci8'; } }