PHP Класс Prado\Data\Common\Pgsql\TPgsqlMetaData

С версии: 3.1
Наследование: extends Prado\Data\Common\TDbMetaData
Показать файл Открыть проект

Открытые методы

Метод Описание
findTableNames ( string $schema = 'public' ) : array Returns all table names in the database.
getDefaultSchema ( ) : string
quoteColumnAlias ( string $name ) : string Quotes a column alias for use in a query.
quoteColumnName ( string $name ) : string Quotes a column name for use in a query.
quoteTableName ( string $name ) : string Quotes a table name for use in a query.
setDefaultSchema ( $schema )

Защищенные методы

Метод Описание
assertIdentifier ( $name ) : string
createNewTableInfo ( $schemaName, $tableName ) : TPgsqlTableInfo
createTableInfo ( $table ) : TPgsqlTableInfo Get the column definitions for given table.
getConstraintKeys ( $schemaName, $tableName ) : array Gets the primary and foreign key column details for the given table.
getForeignKeys ( $src ) : array Gets foreign relationship constraint keys and table name
getIsView ( $schemaName, $tableName ) : boolean
getPrimaryKeys ( $tableName, $schemaName, $columnIndex ) : array Gets the primary key field names
getSchemaTableName ( $table ) : array
getSequenceName ( $tableInfo, $src ) : string
getTableInfoClass ( ) : string
isForeignKeyColumn ( $columnId, $tableInfo ) : boolean
isPrecisionType ( $type ) : boolean
processColumn ( $tableInfo, $col )

Описание методов

assertIdentifier() защищенный Метод

protected assertIdentifier ( $name ) : string
Результат string a valid identifier.

createNewTableInfo() защищенный Метод

protected createNewTableInfo ( $schemaName, $tableName ) : TPgsqlTableInfo
Результат TPgsqlTableInfo

createTableInfo() защищенный Метод

Get the column definitions for given table.
protected createTableInfo ( $table ) : TPgsqlTableInfo
Результат TPgsqlTableInfo table information.

findTableNames() публичный Метод

Returns all table names in the database.
public findTableNames ( string $schema = 'public' ) : array
$schema string the schema of the tables. Defaults to empty string, meaning the current or default schema. If not empty, the returned table names will be prefixed with the schema name.
Результат array all table names in the database.

getConstraintKeys() защищенный Метод

Gets the primary and foreign key column details for the given table.
protected getConstraintKeys ( $schemaName, $tableName ) : array
Результат array tuple ($primary, $foreign)

getDefaultSchema() публичный Метод

public getDefaultSchema ( ) : string
Результат string default schema.

getForeignKeys() защищенный Метод

Gets foreign relationship constraint keys and table name
protected getForeignKeys ( $src ) : array
Результат array foreign relationship table name and keys, null otherwise

getIsView() защищенный Метод

protected getIsView ( $schemaName, $tableName ) : boolean
Результат boolean true if the table is a view.

getPrimaryKeys() защищенный Метод

Gets the primary key field names
protected getPrimaryKeys ( $tableName, $schemaName, $columnIndex ) : array
Результат array primary key field names.

getSchemaTableName() защищенный Метод

protected getSchemaTableName ( $table ) : array
Результат array tuple as ($schemaName,$tableName)

getSequenceName() защищенный Метод

protected getSequenceName ( $tableInfo, $src ) : string
Результат string serial name if found, null otherwise.

getTableInfoClass() защищенный Метод

protected getTableInfoClass ( ) : string
Результат string TDbTableInfo class name.

isForeignKeyColumn() защищенный Метод

protected isForeignKeyColumn ( $columnId, $tableInfo ) : boolean
Результат boolean true if column is a foreign key.

isPrecisionType() защищенный Метод

protected isPrecisionType ( $type ) : boolean
Результат boolean true if column type if "numeric", "interval" or begins with "time".

processColumn() защищенный Метод

protected processColumn ( $tableInfo, $col )

quoteColumnAlias() публичный Метод

Quotes a column alias for use in a query.
public quoteColumnAlias ( string $name ) : string
$name string column alias
Результат string the properly quoted column alias

quoteColumnName() публичный Метод

Quotes a column name for use in a query.
public quoteColumnName ( string $name ) : string
$name string column name
Результат string the properly quoted column name

quoteTableName() публичный Метод

Quotes a table name for use in a query.
public quoteTableName ( string $name ) : string
$name string table name
Результат string the properly quoted table name

setDefaultSchema() публичный Метод

public setDefaultSchema ( $schema )