yii\db\oci\conditions\InConditionBuilder - Yii2 类参考手册
Class yii\db\oci\conditions\InConditionBuilder
| Inheritance | yii\db\oci\conditions\InConditionBuilder » yii\db\conditions\InConditionBuilder |
|---|---|
| Implements | yii\db\ExpressionBuilderInterface |
| Uses Traits | yii\db\ExpressionBuilderTrait |
Protected Properties
隐藏继承的属性 Hide inherited properties
| 属性Property | 类型 Type | 简介 Description | 定义在 Defined By |
|---|---|---|---|
| $queryBuilder | yii\db\QueryBuilder | yii\db\ExpressionBuilderTrait |
Public Methods
隐藏继承的方法 Hide inherited methods
| 方法 Method | 简介 Description | 定义在 Defined By |
|---|---|---|
| __construct() | ExpressionBuilderTrait constructor. | yii\db\ExpressionBuilderTrait |
| build() | Method builds the raw SQL from the $expression that will not be additionally escaped or quoted. | yii\db\oci\conditions\InConditionBuilder |
Protected Methods
隐藏继承的方法 Hide inherited methods
| 方法 Method | 简介 Description | 定义在 Defined By |
|---|---|---|
| buildCompositeInCondition() | Builds SQL for IN condition. | yii\db\conditions\InConditionBuilder |
| buildSubqueryInCondition() | Builds SQL for IN condition. | yii\db\conditions\InConditionBuilder |
| buildValues() | Builds $values to be used in yii\db\conditions\InCondition | yii\db\conditions\InConditionBuilder |
| getNullCondition() | Builds is null/is not null condition for column based on operator | yii\db\conditions\InConditionBuilder |
| getRawValuesFromTraversableObject() | yii\db\conditions\InConditionBuilder | |
| splitCondition() | Oracle DBMS does not support more than 1000 parameters in IN condition. |
yii\db\oci\conditions\InConditionBuilder |
方法详情 Method Details
Method builds the raw SQL from the $expression that will not be additionally escaped or quoted.
| public string build ( yii\db\ExpressionInterface $expression, array &$params = [] ) | ||
| $expression | yii\db\ExpressionInterface|yii\db\conditions\InCondition | The expression to be built. |
| $params | array | The binding parameters. |
| return | string | The raw SQL that will not be additionally escaped or quoted. |
|---|---|---|
Oracle DBMS does not support more than 1000 parameters in IN condition.
This method splits long IN condition into series of smaller ones.
| protected null|string splitCondition ( yii\db\conditions\InCondition $condition, &$params ) | ||
| $condition | yii\db\ExpressionInterface|yii\db\conditions\InCondition | The expression to be built. |
| $params | array | The binding parameters. |
| return | null|string | Null when split is not required. Otherwise - built SQL condition. |
|---|---|---|