DBIx::Librarian::Statement::SelectMany - multi-row SELECT statement


DBIx-Librarian documentation  | view source Contained in the DBIx-Librarian distribution.

Index


NAME

Top

DBIx::Librarian::Statement::SelectMany - multi-row SELECT statement

DESCRIPTION

Top

SELECT statement that expects to retrieve multiple (zero or more) rows from the database.

All values fetched will be stored in arrays in the data hash, either as

    $data->{node}[0]->{column}
    $data->{node}[1]->{column}

or as

    $data->{column}[0]
    $data->{column}[1]

depending on how the output column names are specified in the SQL.

AUTHOR

Top

Jason W. May <jmay@pobox.com>

COPYRIGHT

Top


DBIx-Librarian documentation  | view source Contained in the DBIx-Librarian distribution.