DBIx::Lookup::Field - Create a lookup hash from a database table
use DBI; use DBIx::Lookup::Field qw/dbi_lookup_field/;
$dbh = DBI->connect(...); my $inst_id = dbi_lookup_field( DBH => $dbh, TABLE => 'institution' KEY => 'name', VALUE => 'id', );
print "Inst_A has id ", $inst_id->{Inst_A};
This module provides a way to construct a hash from a database table. This is useful for the situation where you have to perform many lookups of a field by using a key from the same table. If, for example, a table has an id field and a name field and you often have to look up the name by its id, it might be wasteful to issue many separate SQL queries. Having the two fields as a hash speeds up processing, although at the expense of memory.
dbi_lookup_field()
This function creates a hash from two fields in a database table on a DBI connection. One field acts as the hash key, the other acts as the hash value. It expects a parameter hash and returns a reference to the lookup hash.
The following parameters are accepted. Parameters can be required or optional. If a required parameter isn't given, an exception is raised (i.e., it dies).
The database handle through which to access the table from which to create the lookup. Required.
The name of the table that contains the key and value fields. Required.
The field name of the field that is to act as the hash key. Required.
The field name of the field that is to act as the hash value. Required.
A SQL 'WHERE' clause with which to restrict the 'SELECT' statement that is used to create the hash. Optional.
dbi_lookup_field_with_reverse()
This function takes the same parameters as dbi_lookup_field() but in
addition to the lookup hash, it also returns a reversed hash where you
can lookup the table keys by the table values.
my ($lookup, $reverse) = dbi_lookup_field_with_reverse(...);
Note that if a value occurs more than once, only one of the potential keys will win (the one that occurs first in the lookup hash's key order), so be warned.
No bugs have been reported.
Please report any bugs or feature requests to
bug-data-container@rt.cpan.org, or through the web interface at
http://rt.cpan.org.
See perlmodinstall for information and options on installing Perl modules.
The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>.
Marcel Grünauer, <marcel@cpan.org>
Copyright 2001-2007 by Marcel Grünauer
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
DBI(3pm).