Doctrine\DBAL\Platforms\OraclePlatform::getSubstringExpression PHP Method

getSubstringExpression() public method

{@inheritDoc}
public getSubstringExpression ( $value, $position, $length = null )
    public function getSubstringExpression($value, $position, $length = null)
    {
        if ($length !== null) {
            return "SUBSTR({$value}, {$position}, {$length})";
        }
        return "SUBSTR({$value}, {$position})";
    }
OraclePlatform