ArrayParameters
2 years ago
Cache
9 months ago
Driver
9 months ago
Event
2 years ago
Exception
9 months ago
Id
2 years ago
Logging
2 years ago
Platforms
9 months ago
Portability
2 years ago
Query
2 years ago
SQL
9 months ago
Schema
8 months ago
Types
9 months ago
ArrayParameterType.php
2 years ago
ColumnCase.php
2 years ago
Configuration.php
9 months ago
Connection.php
9 months ago
ConnectionException.php
2 years ago
Driver.php
2 years ago
DriverManager.php
2 years ago
Events.php
2 years ago
Exception.php
2 years ago
ExpandArrayParameters.php
2 years ago
FetchMode.php
2 years ago
LockMode.php
2 years ago
ParameterType.php
2 years ago
Query.php
2 years ago
Result.php
2 years ago
Statement.php
2 years ago
TransactionIsolationLevel.php
2 years ago
VersionAwarePlatformDriver.php
2 years ago
index.php
2 years ago
Driver.php
17 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Doctrine\DBAL; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Doctrine\DBAL\Driver\API\ExceptionConverter; |
| 5 | use MailPoetVendor\Doctrine\DBAL\Driver\Connection as DriverConnection; |
| 6 | use MailPoetVendor\Doctrine\DBAL\Driver\Exception; |
| 7 | use MailPoetVendor\Doctrine\DBAL\Platforms\AbstractPlatform; |
| 8 | use MailPoetVendor\Doctrine\DBAL\Schema\AbstractSchemaManager; |
| 9 | use MailPoetVendor\SensitiveParameter; |
| 10 | interface Driver |
| 11 | { |
| 12 | public function connect( array $params); |
| 13 | public function getDatabasePlatform(); |
| 14 | public function getSchemaManager(Connection $conn, AbstractPlatform $platform); |
| 15 | public function getExceptionConverter() : ExceptionConverter; |
| 16 | } |
| 17 |