my $mystery_ref = exec_select($sql); my @temp_array = (); if (ref($mystery_ref) eq 'ARRAY') { @temp_array = @{$mystery_ref}; } else { print "Hey! I didn't get the array reference I expected, rather it is: ", ref($mystery_ref), "\n"; }