Jason W. May > DBIx-Librarian-0.6 > DBIx::Librarian::Statement::SelectMany

Download:
DBIx-Librarian-0.6.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.4   Source  

NAME ^

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

DESCRIPTION ^

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 ^

Jason W. May <jmay@pobox.com>

COPYRIGHT ^

Copyright (C) 2001 Jason W. May. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.