![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/vendor/doctrine/dbal/src/Driver/PDO/SQLSrv/ |
<?php declare(strict_types=1); namespace Doctrine\DBAL\Driver\PDO\SQLSrv; use Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware; use Doctrine\DBAL\Driver\PDO\Statement as PDOStatement; use Doctrine\DBAL\ParameterType; use PDO; final class Statement extends AbstractStatementMiddleware { /** @internal The statement can be only instantiated by its driver connection. */ public function __construct(private readonly PDOStatement $statement) { parent::__construct($statement); } public function bindValue(int|string $param, mixed $value, ParameterType $type): void { switch ($type) { case ParameterType::LARGE_OBJECT: case ParameterType::BINARY: $this->statement->bindParamWithDriverOptions( $param, $value, $type, PDO::SQLSRV_ENCODING_BINARY, ); break; case ParameterType::ASCII: $this->statement->bindParamWithDriverOptions( $param, $value, ParameterType::STRING, PDO::SQLSRV_ENCODING_SYSTEM, ); break; default: $this->statement->bindValue($param, $value, $type); } } }