PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
doctrine
/
dbal
/
src
<?php namespace Doctrine\DBAL; use Doctrine\DBAL\Driver\API\ExceptionConverter; use Doctrine\DBAL\Driver\Connection as DriverConnection; use Doctrine\DBAL\Driver\Exception; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Schema\AbstractSchemaManager; /** * Driver interface. * Interface that all DBAL drivers must implement. */ interface Driver { /** * Attempts to create a connection with the database. * * @param mixed[] $params All connection parameters. * * @return DriverConnection The database connection. * * @throws Exception */ public function connect(array $params); /** * Gets the DatabasePlatform instance that provides all the metadata about * the platform this driver connects to. * * @return AbstractPlatform The database platform. */ public function getDatabasePlatform(); /** * Gets the SchemaManager that can be used to inspect and change the underlying * database schema of the platform this driver connects to. * * @deprecated Use {@link AbstractPlatform::createSchemaManager()} instead. * * @return AbstractSchemaManager */ public function getSchemaManager(Connection $conn, AbstractPlatform $platform); /** * Gets the ExceptionConverter that can be used to convert driver-level exceptions into DBAL exceptions. */ public function getExceptionConverter(): ExceptionConverter; }
[-] Driver.php
[edit]
[+]
Cache
[+]
Tools
[+]
..
[-] VersionAwarePlatformDriver.php
[edit]
[+]
Exception
[-] FetchMode.php
[edit]
[+]
Id
[+]
Query
[-] Query.php
[edit]
[-] DriverManager.php
[edit]
[-] ColumnCase.php
[edit]
[-] LockMode.php
[edit]
[+]
Types
[+]
Platforms
[-] Connection.php
[edit]
[+]
Connections
[+]
Driver
[+]
Portability
[-] ParameterType.php
[edit]
[-] Events.php
[edit]
[+]
SQL
[-] Exception.php
[edit]
[-] Statement.php
[edit]
[+]
Logging
[-] Result.php
[edit]
[+]
ArrayParameters
[+]
Event
[-] TransactionIsolationLevel.php
[edit]
[-] Configuration.php
[edit]
[-] ExpandArrayParameters.php
[edit]
[-] ConnectionException.php
[edit]
[+]
Schema