Class yii\sphinx\ColumnSchema
Inheritance | yii\sphinx\ColumnSchema » yii\base\BaseObject |
---|---|
Available since version | 2.0 |
ColumnSchema class describes the metadata of a column in a Sphinx index.
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
$dbType | string | The DB type of this column. | yii\sphinx\ColumnSchema |
$isAttribute | boolean | Whether this column is an attribute | yii\sphinx\ColumnSchema |
$isField | boolean | Whether this column is a indexed field | yii\sphinx\ColumnSchema |
$isMva | boolean | Whether this column is a multi value attribute (MVA) | yii\sphinx\ColumnSchema |
$isPrimaryKey | boolean | Whether this column is a primary key | yii\sphinx\ColumnSchema |
$name | string | Name of this column (without quotes). | yii\sphinx\ColumnSchema |
$phpType | string | The PHP type of this column. | yii\sphinx\ColumnSchema |
$type | string | Abstract type of this column. | yii\sphinx\ColumnSchema |
Public Methods
Method | Description | Defined By |
---|---|---|
dbTypecast() | Converts the input value according to $type and $dbType for use in a db query. | yii\sphinx\ColumnSchema |
phpTypecast() | Converts the input value according to $phpType after retrieval from the database. | yii\sphinx\ColumnSchema |
Protected Methods
Method | Description | Defined By |
---|---|---|
typecast() | Converts the input value according to $phpType after retrieval from the database. | yii\sphinx\ColumnSchema |
Property Details
The DB type of this column. Possible DB types vary according to the type of DBMS.
Whether this column is an attribute
Whether this column is a indexed field
Whether this column is a multi value attribute (MVA)
Whether this column is a primary key
Name of this column (without quotes).
The PHP type of this column. Possible PHP types include: string, boolean, integer, double.
Abstract type of this column. Possible abstract types include: string, text, boolean, smallint, integer, bigint, float, decimal, datetime, timestamp, time, date, binary, and money.
Method Details
Converts the input value according to $type and $dbType for use in a db query.
If the value is null or an \yii\db\Expression, it will not be converted.
public mixed dbTypecast ( $value ) | ||
$value | mixed | Input value |
return | mixed | Converted value. This may also be an array containing the value as the first element and the PDO type as the second element. |
---|
Converts the input value according to $phpType after retrieval from the database.
If the value is null or an \yii\db\Expression, it will not be converted.
public mixed phpTypecast ( $value ) | ||
$value | mixed | Input value |
return | mixed | Converted value |
---|
Converts the input value according to $phpType after retrieval from the database.
If the value is null or an \yii\db\Expression, it will not be converted.
protected mixed typecast ( $value ) | ||
$value | mixed | Input value |
return | mixed | Converted value |
---|