| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Database/Driver/PDOMySql/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Database/Driver/PDOMySql/Driver.php |
<?php
declare(strict_types=1);
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Database\Driver\PDOMySql;
use Doctrine\DBAL\Driver\AbstractMySQLDriver;
use Doctrine\DBAL\Driver\Connection as DriverConnectionInterface;
use Doctrine\DBAL\Driver\PDO\Exception;
use TYPO3\CMS\Core\Database\Driver\DriverConnection;
/**
* The main change in favor of Doctrine's implementation is to use our custom DriverConnection (which in turn creates
* a custom Result object).
*
* All private methods have to be checked on every release of doctrine/dbal.
*
* @internal this implementation is not part of TYPO3's Public API.
*/
class Driver extends AbstractMySQLDriver
{
/**
* {@inheritdoc}
*
* @return DriverConnectionInterface
*/
public function connect(array $params)
{
$driverOptions = $params['driverOptions'] ?? [];
if (!empty($params['persistent'])) {
$driverOptions[\PDO::ATTR_PERSISTENT] = true;
}
try {
$pdo = new \PDO(
$this->constructPdoDsn($params),
$params['user'] ?? '',
$params['password'] ?? '',
$driverOptions
);
// use prepared statements for pdo_mysql per default to retrieve native data types
if (!isset($driverOptions[\PDO::ATTR_EMULATE_PREPARES])) {
$pdo->setAttribute(\PDO::ATTR_EMULATE_PREPARES, false);
}
} catch (\PDOException $exception) {
throw Exception::new($exception);
}
return new DriverConnection($pdo);
}
/**
* Constructs the MySql PDO DSN.
*
* @param mixed[] $params
*
* @return string The DSN.
*/
protected function constructPdoDsn(array $params)
{
$dsn = 'mysql:';
if (isset($params['host']) && $params['host'] !== '') {
$dsn .= 'host=' . $params['host'] . ';';
}
if (isset($params['port'])) {
$dsn .= 'port=' . $params['port'] . ';';
}
if (isset($params['dbname'])) {
$dsn .= 'dbname=' . $params['dbname'] . ';';
}
if (isset($params['unix_socket'])) {
$dsn .= 'unix_socket=' . $params['unix_socket'] . ';';
}
if (isset($params['charset'])) {
$dsn .= 'charset=' . $params['charset'] . ';';
}
return $dsn;
}
/**
* {@inheritdoc}
*
* @deprecated
*/
public function getName()
{
return 'pdo_mysql';
}
}