SQL::Statement::Function - abstract base class for all function executing terms
Contents
Description
SQL::Statement::Function::StrConcat implements a string concatenation term.
Inheritance
SQL::Statement::Function::StrConcat
ISA SQL::Statement::Function
ISA SQL::Statement::Term
Methods
new
Instantiates a new "SQL::Statement::Function::StrConcat" instance.
value
Returns the concatenated string composed of the parameter values.
Name
SQL::Statement::Function::StrConcat - implements the built-in string concatenation
Synopsis
# create an substr function term with an SQL::Statement object as owner
# and \@params to concatenate
my $term = SQL::Statement::StrConcat->new( $owner, \@params );
# access the result of that operation
$term->value( $eval );
