Class yii\db\sqlite\conditions\LikeConditionBuilder

Inheritanceyii\db\sqlite\conditions\LikeConditionBuilder » yii\db\conditions\LikeConditionBuilder
Implementsyii\db\ExpressionBuilderInterface
Uses Traitsyii\db\ExpressionBuilderTrait
Source Code https://github.com/yiisoft/yii2/blob/master/framework/db/sqlite/conditions/LikeConditionBuilder.php

Protected Properties

Hide inherited properties

PropertyTypeDescriptionDefined By
$escapeCharacter string|null Character used to escape special characters in LIKE conditions. yii\db\sqlite\conditions\LikeConditionBuilder
$escapingReplacements array Map of chars to their replacements in LIKE conditions. yii\db\conditions\LikeConditionBuilder
$queryBuilder yii\db\QueryBuilder yii\db\ExpressionBuilderTrait

Public Methods

Hide inherited methods

MethodDescriptionDefined 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\conditions\LikeConditionBuilder

Protected Methods

Hide inherited methods

MethodDescriptionDefined By
parseOperator() yii\db\conditions\LikeConditionBuilder

Property Details

$escapeCharacter protected property

Character used to escape special characters in LIKE conditions. By default it's assumed to be \.

protected string|null $escapeCharacter '\\'