- or download this
my $ret = $src_drinks->match( { sugar => "no",
color => "black" } );
- or download this
SELELCT * FROM drinks WHERE sugar LIKE "no" AND color LIKE "black";
- or download this
# sub match
# return all objects that match the requested options
...
$self->{ _matched }->{ $keys[0]."@".$hashref->{ $keys[0] } } = \@ret
+ if ( @keys == 1 );
return \@ret;
}