blob: 44cecc97f214a31fb4ce2c8796695370e7039822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?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);
}
}
}
|