Help for this page

Select Code to Download


  1. or download this
    use warnings; # needs 5.6.0 or newer,
    # $^W = 1;    # for older
    use strict;
    
  2. or download this
    sub search_database {
        my $database = shift;
    ...
        close DB or die $!;
        \@results;
    }