- or download this
sub test {
if (wantarray){
...
return ('A', 'List', 'of', 'Strings');
}
}
- or download this
sub fetchall_arrayref {
my $slice= shift || [];
...
}
return \@rows;
}
- or download this
$sth->fetchall_arrayref( [] ) # returns Array references
$sth->fetchall_arrayref( {} ) # returns Hash references