in reply to Re: yet more dbi issues
in thread yet more dbi issues

Or just use fetchall_arrayref (or selectall_arrayref):
my @list_of_teamdata = @{$sth->fetchall_arrayref}; # or just rewrite the rest to use an array ref my $list_of_teamdata = $sth->fetchall_arrayref;