123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?php
- namespace Doctrine\DBAL\Driver;
- use Doctrine\DBAL\Driver\Connection as ConnectionInterface;
- use Doctrine\DBAL\Driver\PDO\Exception;
- use Doctrine\DBAL\Driver\PDO\Statement;
- use Doctrine\DBAL\ParameterType;
- use Doctrine\Deprecations\Deprecation;
- use PDO;
- use PDOException;
- use PDOStatement;
- use function assert;
- /**
- * PDO implementation of the Connection interface.
- * Used by all PDO-based drivers.
- *
- * @deprecated Use {@link Connection} instead
- */
- class PDOConnection extends PDO implements ConnectionInterface, ServerInfoAwareConnection
- {
- use PDOQueryImplementation;
- /**
- * @internal The connection can be only instantiated by its driver.
- *
- * @param string $dsn
- * @param string|null $user
- * @param string|null $password
- * @param mixed[]|null $options
- *
- * @throws PDOException In case of an error.
- */
- public function __construct($dsn, $user = null, $password = null, ?array $options = null)
- {
- try {
- parent::__construct($dsn, (string) $user, (string) $password, (array) $options);
- $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, [Statement::class, []]);
- $this->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
- } catch (PDOException $exception) {
- throw Exception::new($exception);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function exec($sql)
- {
- try {
- $result = parent::exec($sql);
- assert($result !== false);
- return $result;
- } catch (PDOException $exception) {
- throw Exception::new($exception);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function getServerVersion()
- {
- return PDO::getAttribute(PDO::ATTR_SERVER_VERSION);
- }
- /**
- * @param string $sql
- * @param array<int, int> $driverOptions
- *
- * @return PDOStatement
- */
- public function prepare($sql, $driverOptions = [])
- {
- try {
- $statement = parent::prepare($sql, $driverOptions);
- assert($statement instanceof PDOStatement);
- return $statement;
- } catch (PDOException $exception) {
- throw Exception::new($exception);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function quote($value, $type = ParameterType::STRING)
- {
- return parent::quote($value, $type);
- }
- /**
- * {@inheritdoc}
- */
- public function lastInsertId($name = null)
- {
- try {
- if ($name === null) {
- return parent::lastInsertId();
- }
- return parent::lastInsertId($name);
- } catch (PDOException $exception) {
- throw Exception::new($exception);
- }
- }
- /**
- * {@inheritdoc}
- */
- public function requiresQueryForServerVersion()
- {
- Deprecation::triggerIfCalledFromOutside(
- 'doctrine/dbal',
- 'https://github.com/doctrine/dbal/pull/4114',
- 'ServerInfoAwareConnection::requiresQueryForServerVersion() is deprecated and removed in DBAL 3.'
- );
- return false;
- }
- /**
- * @param mixed ...$args
- */
- private function doQuery(...$args): PDOStatement
- {
- try {
- $stmt = parent::query(...$args);
- } catch (PDOException $exception) {
- throw Exception::new($exception);
- }
- assert($stmt instanceof PDOStatement);
- return $stmt;
- }
- }
|