interface Driver

Supplemental PDO database driver.

Constants

SupportSequence

SupportSelectUngroupedColumns

SupportMultiInsertAsSelect

SupportMultiColumnAsOrCond

SupportSubselect

SupportSchema

deprecated SUPPORT_SEQUENCE

deprecated SUPPORT_SELECT_UNGROUPED_COLUMNS

deprecated SUPPORT_MULTI_INSERT_AS_SELECT

deprecated SUPPORT_MULTI_COLUMN_AS_OR_COND

deprecated SUPPORT_SUBSELECT

deprecated SUPPORT_SCHEMA

Methods

void
initialize(Connection $connection, array $options)

Initializes connection.

convertException(PDOException $e)

Converts PDOException to DriverException or its descendant.

string
delimite(string $name)

Delimites identifier for use in a SQL statement.

string
formatDateTime(DateTimeInterface $value)

Formats date-time for use in a SQL statement.

string
formatDateInterval(DateInterval $value)

Formats date-time interval for use in a SQL statement.

string
formatLike(string $value, int $pos)

Encodes string for use in a LIKE statement.

void
applyLimit(string $sql, int|null $limit, int|null $offset)

Injects LIMIT/OFFSET to the SQL query.

array
getTables()

No description

array
getColumns(string $table)

No description

array
getIndexes(string $table)

No description

array
getForeignKeys(string $table)

No description

array
getColumnTypes(PDOStatement $statement)

Returns associative array of detected types in result set.

bool
isSupported(string $item)

Cheks if driver supports specific property

Details

at line 38
void initialize(Connection $connection, array $options)

Initializes connection.

Parameters

Connection $connection
array $options

Return Value

void

at line 43
DriverException convertException(PDOException $e)

Converts PDOException to DriverException or its descendant.

Parameters

PDOException $e

Return Value

DriverException

at line 48
string delimite(string $name)

Delimites identifier for use in a SQL statement.

Parameters

string $name

Return Value

string

at line 53
string formatDateTime(DateTimeInterface $value)

Formats date-time for use in a SQL statement.

Parameters

DateTimeInterface $value

Return Value

string

at line 58
string formatDateInterval(DateInterval $value)

Formats date-time interval for use in a SQL statement.

Parameters

DateInterval $value

Return Value

string

at line 63
string formatLike(string $value, int $pos)

Encodes string for use in a LIKE statement.

Parameters

string $value
int $pos

Return Value

string

at line 68
void applyLimit(string $sql, int|null $limit, int|null $offset)

Injects LIMIT/OFFSET to the SQL query.

Parameters

string $sql
int|null $limit
int|null $offset

Return Value

void

at line 73
array getTables()

No description

Return Value

array

at line 76
array getColumns(string $table)

No description

Parameters

string $table

Return Value

array

at line 79
array getIndexes(string $table)

No description

Parameters

string $table

Return Value

array

at line 82
array getForeignKeys(string $table)

No description

Parameters

string $table

Return Value

array

at line 88
array getColumnTypes(PDOStatement $statement)

Returns associative array of detected types in result set.

Parameters

PDOStatement $statement

Return Value

array

at line 94
bool isSupported(string $item)

Cheks if driver supports specific property

Parameters

string $item

Return Value

bool