NAME
DBIx::DataModel::Schema::ResultAs::Flat_arrayref - accumulates columns into a flat arrayref
SYNOPSIS
$source
->
select
(...,
-columns
=> [
$col1
, ...],
-result_as
=>
'flat_arrayref'
);
DESCRIPTION
Retrieves all data rows from the statement; for each row, the columns specified in the -columns
argument are pushed into a global, flat array. See "flat_arrayref" in DBIx::DataModel::Doc::Reference for examples.