cs::DBI::Table::Array - treat a DBI table as an array
use cs::DBI::Table::Array;
tie @a, cs::DBI::Table::Array, dbh, table, where;
use cs::DBI;
$arrayref=cs::DBI::arraytable(dbh,table,where,preload)
The cs::DBI::Table::Array module permits you to tie a database table to a hash.
Attach array to the table in database dbh. where must be an SQL select...where condition to constrain the records to which hash now applies, or the empty string.
Cameron Simpson <cs@zip.com.au