Help for this page

Select Code to Download


  1. or download this
    @$arrayRef = ();
    while (my $row = $sth->fetch()) {
       push @$arrayRef, $row;
    }
    
  2. or download this
    @$arrayRef = ();
    while (my $row = $sth->fetch()) {
       push @$arrayRef, [ @$row ];  # Make a copy.
    }
    
  3. or download this
    @$arrayRef = @{ $dbh->selectall_arrayref($stmt_or_sth) };