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 $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; } }