in reply to use of DBI perl function fetchall_arrayref

You were close.
# Create an anonymous arrayref my $arrayref = [1,2,3]; # Create a reference to an existing array my @array = (1,2,3); my $arrayref2 = \@array; # Get a single value from the arrayref: my $one = $arrayref2->[0]; # Get all the values from the arrayref: my ($one,$two,$three) = @$arrayref2;
In the code you posted you wrote:
[$sql_return]
Which is putting the arrayref provided by DBI inside another arrayref. Instead do this:
@$sql_return
It might help you visualize the data structure if you use Data::Dumper, like this:
use Data::Dumper; #... my $sql_return = $sth_tss->fetchall_arrayref; print Dumper $sql_return;

Replies are listed 'Best First'.
Re^2: use of DBI perl function fetchall_arrayref
by EvanK (Chaplain) on Jan 26, 2007 at 15:24 UTC
    and if you want to be explicit in dereferencing, enclose the references in braces. this sometimes helps increase readability:
    # dereferencing an array print @$reference; # EXPLICITLY dereferencing an array print @{$reference};

    __________
    The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it.
    - Terry Pratchett