Help for this page

Select Code to Download


  1. or download this
    foreach $key (@keys) {
      $sth->execute($key);
      $columns_ref = $sth->fetchrow_arrayref();
      push(@entries, [@$columns_ref]);
    }
    
  2. or download this
    foreach $key (@keys) {
      $sth->execute($key);
      my $columns_ref = $sth->fetchrow_arrayref();
      push(@entries, $columns_ref);
    }