in reply to Re^2: Why a reference, not a hash/array?
in thread Why a reference, not a hash/array?

Something like this:
use DBIx::Simple; my @names = $db->query('SELECT name FROM people WHERE id > 5')->flat;
fetches everything into "one big flattened list."