Help for this page

Select Code to Download


  1. or download this
    my $ret = $src_drinks->match( { sugar => "no",
                                    color => "black" } );
    
  2. or download this
    SELELCT * FROM drinks WHERE sugar LIKE "no" AND color LIKE "black";
    
  3. 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;
    }