Help for this page

Select Code to Download


  1. or download this
    my ($self,$params) = @_;
    my %tables = (
    ...
        $ids = $self->search_index_table( $tables{$name}, $value, $ids );
        last unless $ids;
    }
    
  2. or download this
    sub search_index_table {
        my ( $self, $table, $value, $ids ) = @_;
    ...
        }
        return (@results ? \@results : undef);
    }