Help for this page

Select Code to Download


  1. or download this
    # Create an anonymous arrayref
    my $arrayref = [1,2,3];
    ...
    
    # Get all the values from the arrayref:
    my ($one,$two,$three) = @$arrayref2;
    
  2. or download this
    [$sql_return]
    
  3. or download this
    @$sql_return
    
  4. or download this
    use Data::Dumper;
    #...
    my $sql_return = $sth_tss->fetchall_arrayref;
    print Dumper $sql_return;