NAME
Tie::LDAP::Entry - Tie LDAP database entry to Perl hash.
SYNOPSIS
use Tie::LDAP;
tie %LDAP, 'Tie::LDAP', {
host => $host,
user => $user,
pass => $user,
base => $base,
};
$data = $LDAP{$path};
## Simple hash operation, but also updates corresponding LDAP entry
$data->{username} = 'tai@imasy.or.jp';
...
DESCRIPTION
See Tie::LDAP.
COPYRIGHT
Copyright 1998-1999, T. Yamada <tai@imasy.or.jp>. All rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.