class PgSqlDriver extends Object implements ISupplementalDriver

Supplemental PostgreSQL database driver.

Methods

__construct(Connection $connection, array $options)

No description

string
delimite($name)

Delimites identifier for use in a SQL statement.

mixed
formatBool($value)

Formats boolean for use in a SQL statement.

string
formatDateTime($value)

Formats date-time for use in a SQL statement.

string
formatLike($value, $pos)

Encodes string for use in a LIKE statement.

void
applyLimit($sql, $limit, $offset)

Injects LIMIT/OFFSET to the SQL query.

array
normalizeRow($row)

Normalizes result row.

array
getTables()

Returns list of tables.

array
getColumns($table)

Returns metadata for all columns in a table.

array
getIndexes($table)

Returns metadata for all indexes in a table.

array
getForeignKeys($table)

Returns metadata for all foreign keys in a table.

array
getColumnTypes(PDOStatement $statement)

Returns associative array of detected types (IReflection::FIELD_*) in result set.

bool
isSupported($item)

No description

Details

at line 24
__construct(Connection $connection, array $options)

No description

Parameters

Connection $connection
array $options

at line 36
string delimite($name)

Delimites identifier for use in a SQL statement.

Parameters

$name

Return Value

string

at line 46
mixed formatBool($value)

Formats boolean for use in a SQL statement.

Parameters

$value

Return Value

mixed

at line 55
string formatDateTime($value)

Formats date-time for use in a SQL statement.

Parameters

$value

Return Value

string

at line 64
string formatLike($value, $pos)

Encodes string for use in a LIKE statement.

Parameters

$value
$pos

Return Value

string

at line 76
void applyLimit($sql, $limit, $offset)

Injects LIMIT/OFFSET to the SQL query.

Parameters

$sql
$limit
$offset

Return Value

void

at line 90
array normalizeRow($row)

Normalizes result row.

Parameters

$row

Return Value

array

at line 102
array getTables()

Returns list of tables.

Return Value

array

of [name [, (bool) view]]

at line 128
array getColumns($table)

Returns metadata for all columns in a table.

Parameters

$table

Return Value

array

of [name, nativetype, primary [, table, fullname, (int) size, (bool) nullable, (mixed) default, (bool) autoincrement, (array) vendor]]

at line 171
array getIndexes($table)

Returns metadata for all indexes in a table.

Parameters

$table

Return Value

array

of [name, (array of names) columns [, (bool) unique, (bool) primary]]

at line 202
array getForeignKeys($table)

Returns metadata for all foreign keys in a table.

Parameters

$table

Return Value

array

at line 229
array getColumnTypes(PDOStatement $statement)

Returns associative array of detected types (IReflection::FIELD_*) in result set.

Parameters

PDOStatement $statement

Return Value

array

at line 239
bool isSupported($item)

No description

Parameters

$item

Return Value

bool