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::Operation - base class for all operation terms

Description

       SQL::Statement::Operation::RLike is used to the comparisons for the "RLIKE" operation.

Inheritance

         SQL::Statement::Operation::RLike
         ISA SQL::Statement::Operation::Regexp
           ISA SQL::Statement::Operation
             ISA SQL::Statement::Term

Methods

regexp
       Returns "qr/$right$/s"

Name

       SQL::Statement::Operation::RLike - implements the rlike operation

Synopsis

         # create an C<rlike> operation with an SQL::Statement object as owner,
         # specifying the operation name, the left and the right operand
         my $term = SQL::Statement::RLike->new( $owner, $op, $left, $right );
         # access the result of that operation
         $term->value( $eval );

See Also