SQL::Statement::Operation - base class for all operation terms
Contents
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 );
