PHP Класс Horde_Db_Adapter_Base_Index, horde

Автор: Mike Naberezny ([email protected])
Автор: Derek DeVries ([email protected])
Автор: Chuck Hagenbuch ([email protected])
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
$columns array The columns this index covers.
$name string The index's name.
$primary boolean Is this a primary key?
$table string The table the index is on.
$unique

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

Метод Описание
__construct ( string $table, string $name, boolean $primary, boolean $unique, array $columns ) Constructor.
__toString ( ) : string Comma-separated list of the columns in the primary key
getName ( ) : string

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

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

Constructor.
public __construct ( string $table, string $name, boolean $primary, boolean $unique, array $columns )
$table string The table the index is on.
$name string The index's name.
$primary boolean Is this a primary key?
$unique boolean Is this a unique index?
$columns array The columns this index covers.

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

Comma-separated list of the columns in the primary key
public __toString ( ) : string
Результат string

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

public getName ( ) : string
Результат string

Описание свойств

$columns публичное свойство

The columns this index covers.
public array $columns
Результат array

$name публичное свойство

The index's name.
public string $name
Результат string

$primary публичное свойство

Is this a primary key?
public bool $primary
Результат boolean

$table публичное свойство

The table the index is on.
public string $table
Результат string

$unique публичное свойство

public $unique