Help for this page

Select Code to Download


  1. or download this
    my $names = $sth->{NAME};
    #$names is an array reference
    for (@$names) {
       print $_, "\n";
    }
    
  2. or download this
    my $types = $sth->{TYPE};
    #$types is an array reference
    for (@$types) {
       print $_, "\n";
    }