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