PdoValueBuilder
in package
implements
ExpressionBuilderInterface
Class PdoValueBuilder builds object of the [[PdoValue]] expression class.
Tags
Table of Contents
Interfaces
- ExpressionBuilderInterface
- Interface ExpressionBuilderInterface is designed to build raw SQL from specific expression objects that implement [[ExpressionInterface]].
Constants
- PARAM_PREFIX = ':pv'
Methods
- build() : string
- Method builds the raw SQL from the $expression that will not be additionally escaped or quoted.
Constants
PARAM_PREFIX
public
mixed
PARAM_PREFIX
= ':pv'
Methods
build()
Method builds the raw SQL from the $expression that will not be additionally escaped or quoted.
public
build(ExpressionInterface $expression[, array<string|int, mixed> &$params = [] ]) : string
Parameters
- $expression : ExpressionInterface
-
the expression to be built.
- $params : array<string|int, mixed> = []
-
the binding parameters.
Return values
string —the raw SQL that will not be additionally escaped or quoted.