blob: 4a821d83004100fb3bbde3add6032189a55e12a8 (
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
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Portability;
use Doctrine\DBAL\Driver\Connection as ConnectionInterface;
use Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware;
/**
* Portability wrapper for a Connection.
*/
final class Connection extends AbstractConnectionMiddleware
{
public const PORTABILITY_ALL = 255;
public const PORTABILITY_NONE = 0;
public const PORTABILITY_RTRIM = 1;
public const PORTABILITY_EMPTY_TO_NULL = 4;
public const PORTABILITY_FIX_CASE = 8;
public function __construct(ConnectionInterface $connection, private readonly Converter $converter)
{
parent::__construct($connection);
}
public function prepare(string $sql): Statement
{
return new Statement(
parent::prepare($sql),
$this->converter,
);
}
public function query(string $sql): Result
{
return new Result(
parent::query($sql),
$this->converter,
);
}
}
|