123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Database\DBAL;
- use Doctrine\DBAL\Driver\PDO\Exception;
- use Doctrine\DBAL\Driver\PDO\Result;
- use Doctrine\DBAL\Driver\PDO\Statement;
- use Doctrine\DBAL\Driver\Result as ResultInterface;
- use Doctrine\DBAL\Driver\ServerInfoAwareConnection;
- use Doctrine\DBAL\Driver\Statement as StatementInterface;
- use Doctrine\DBAL\ParameterType;
- use PDO;
- use PDOException;
- use PDOStatement;
- use function assert;
- class Connection implements ServerInfoAwareConnection
- {
- /**
- * Create a new PDO connection instance.
- */
- public function __construct(protected PDO $connection)
- {
- }
- /**
- * Execute an SQL statement.
- */
- public function exec(string $sql): int
- {
- try {
- $result = $this->connection->exec($sql);
- assert($result !== false);
- return $result;
- } catch (PDOException $exception) {
- throw Exception::new($exception);
- }
- }
- /**
- * Prepare a new SQL statement.
- */
- public function prepare(string $sql): StatementInterface
- {
- try {
- return $this->createStatement(
- $this->connection->prepare($sql)
- );
- } catch (PDOException $exception) {
- throw Exception::new($exception);
- }
- }
- /**
- * Execute a new query against the connection.
- */
- public function query(string $sql): ResultInterface
- {
- try {
- $stmt = $this->connection->query($sql);
- assert($stmt instanceof PDOStatement);
- return new Result($stmt);
- } catch (PDOException $exception) {
- throw Exception::new($exception);
- }
- }
- /**
- * Get the last insert ID.
- *
- * @param null|string $name
- * @return string
- */
- public function lastInsertId($name = null)
- {
- try {
- if ($name === null) {
- return $this->connection->lastInsertId();
- }
- return $this->connection->lastInsertId($name);
- } catch (PDOException $exception) {
- throw Exception::new($exception);
- }
- }
- /**
- * Begin a new database transaction.
- */
- public function beginTransaction()
- {
- return $this->connection->beginTransaction();
- }
- /**
- * Commit a database transaction.
- */
- public function commit()
- {
- return $this->connection->commit();
- }
- /**
- * Roll back a database transaction.
- */
- public function rollBack()
- {
- return $this->connection->rollBack();
- }
- /**
- * Wrap quotes around the given input.
- *
- * @param string $input
- * @param string $type
- * @return string
- */
- public function quote($input, $type = ParameterType::STRING)
- {
- return $this->connection->quote($input, $type);
- }
- /**
- * Get the server version for the connection.
- *
- * @return string
- */
- public function getServerVersion()
- {
- return $this->connection->getAttribute(PDO::ATTR_SERVER_VERSION);
- }
- /**
- * Get the wrapped PDO connection.
- */
- public function getWrappedConnection(): PDO
- {
- return $this->connection;
- }
- /**
- * Create a new statement instance.
- */
- protected function createStatement(PDOStatement $stmt): Statement
- {
- return new Statement($stmt);
- }
- }
|