PHP 클래스 Horde_Db_Adapter_Base_Index, horde

저자: Mike Naberezny ([email protected])
저자: Derek DeVries ([email protected])
저자: Chuck Hagenbuch ([email protected])
파일 보기 프로젝트 열기: horde/horde

공개 프로퍼티들

프로퍼티 타입 설명
$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