The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Tie::Hash::DBD - tie a hash to a database

SYNOPSIS

    use Tie::Hash::DBD;

    tie my %hash, "Tie::Hash::DBD",   $dbh [, \%options ];

    use Tie::Array::DBD;

    tie my @array, "Tie::Array::DBD", $dbh [, \%options ];

COPYING

Recent changes can be (re)viewed in the public GIT repository at http://repo.or.cz/w/Tie-Hash-DBD.git Feel free to clone your own copy:

 $ git clone http://repo.or.cz/r/Tie-Hash-DBD.git Tie-Hash-DBD

or get it as a tgz:

 $ wget --output-document=Tie-Hash-DBD.tgz \
       'http://repo.or.cz/w/Tie-Hash-DBD.git?a=snapshot;sf=tgz'

PREREQUISITES

perl5.8.3 and DBI. Preferably a recent version of DBI and the DBD module you are planning to use.

5.8.3 not because of syntax, but because it fails with SQLite when used with - the same version of SQLite - under 5.8.2.

RESTRICTIONS

This module does not (yet) support dynamic changes in deep or nested data. Please read the documentation for use of this.

DESCRIPTION

See perldoc Tie::Hash::DBD and perldoc Tie::Array::DBD

AUTHOR

H.Merijn Brand <h.m.brand@xs4all.nl>

COPYRIGHT AND LICENSE

Copyright (C) 2010-2014 H.Merijn Brand. All rights reserved.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.