Help for this page

Select Code to Download


  1. or download this
    my $data_all =  $connection->selectall_arrayref($query, { Slice => {} 
    +} );
    
  2. or download this
      my $currec = $row;
      foreach my $columns (keys %$currec){
        say $columns;
        say $currec{$columns};
      }
    
  3. or download this
    use Data::Dumper;
    say Dumper $row;