logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SQL::Statement::Function - abstract base class for all function executing terms

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 );

See Also