类 yii\db\oci\conditions\LikeConditionBuilder
公共方法
方法 | 描述 | 定义于 |
---|---|---|
__construct() | ExpressionBuilderTrait 构造函数。 | yii\db\ExpressionBuilderTrait |
build() | 该方法从 $expression 构建原始 SQL,该 SQL 不会被额外转义或引用。 | yii\db\oci\conditions\LikeConditionBuilder |
属性详情
用于转义 LIKE 条件中特殊字符的字符。默认情况下,假定为 \
。
{@inheritdoc}
方法详情
定义于: yii\db\ExpressionBuilderTrait::__construct()
ExpressionBuilderTrait 构造函数。
public void __construct ( yii\db\QueryBuilder $queryBuilder ) | ||
$queryBuilder | yii\db\QueryBuilder |
public function __construct(QueryBuilder $queryBuilder)
{
$this->queryBuilder = $queryBuilder;
}
该方法从 $expression 构建原始 SQL,该 SQL 不会被额外转义或引用。
public string build ( yii\db\ExpressionInterface $expression, array &$params = [] ) | ||
$expression | yii\db\ExpressionInterface|yii\db\conditions\LikeCondition |
要构建的表达式。 |
$params | array |
绑定参数。 |
返回值 | string |
不会被额外转义或引用的原始 SQL。 |
---|
public function build(ExpressionInterface $expression, array &$params = [])
{
if (!isset($this->escapingReplacements['\\'])) {
/*
* Different pdo_oci8 versions may or may not implement PDO::quote(), so
* yii\db\Schema::quoteValue() may or may not quote \.
*/
$this->escapingReplacements['\\'] = substr($this->queryBuilder->db->quoteValue('\\'), 1, -1);
}
return parent::build($expression, $params);
}
protected array parseOperator ( $operator ) | ||
$operator | string |
protected function parseOperator($operator)
{
if (!preg_match('/^(AND |OR |)(((NOT |))I?LIKE)/', $operator, $matches)) {
throw new InvalidArgumentException("Invalid operator '$operator'.");
}
$andor = ' ' . (!empty($matches[1]) ? $matches[1] : 'AND ');
$not = !empty($matches[3]);
$operator = $matches[2];
return [$andor, $not, $operator];
}
注册 或 登录 以发表评论。