OCIFunctionBuilder

class OC\DB\QueryBuilder\FunctionBuilder\OCIFunctionBuilder
Source:lib/private/DB/QueryBuilder/FunctionBuilder/OCIFunctionBuilder.php#32
Parent:OC\DB\QueryBuilder\FunctionBuilder\FunctionBuilder

Methods

public OC\DB\QueryBuilder\FunctionBuilder\OCIFunctionBuilder::md5($input)
Source:lib/private/DB/QueryBuilder/FunctionBuilder/OCIFunctionBuilder.php#33
public OC\DB\QueryBuilder\FunctionBuilder\OCIFunctionBuilder::greatest($x, $y)
Oracle uses the first value to cast the rest or the values. So when the
first value is a literal, plain value or column, instead of doing the
math, it will cast the expression to int and continue with a “0”. So when
the second parameter is a function or column, we have to put that as
first parameter.
Source:

lib/private/DB/QueryBuilder/FunctionBuilder/OCIFunctionBuilder.php#49

Parameters:
Returns:

\OCP\DB\QueryBuilder\IQueryFunction

public OC\DB\QueryBuilder\FunctionBuilder\OCIFunctionBuilder::least($x, $y)
Oracle uses the first value to cast the rest or the values. So when the
first value is a literal, plain value or column, instead of doing the
math, it will cast the expression to int and continue with a “0”. So when
the second parameter is a function or column, we have to put that as
first parameter.
Source:

lib/private/DB/QueryBuilder/FunctionBuilder/OCIFunctionBuilder.php#69

Parameters:
Returns:

\OCP\DB\QueryBuilder\IQueryFunction