Tie::LDAP::Entry - Tie LDAP database entry to Perl hash.


Tie-LDAP documentation  | view source Contained in the Tie-LDAP distribution.

Index


NAME

Top

 Tie::LDAP::Entry - Tie LDAP database entry to Perl hash.

SYNOPSIS

Top

 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

Top

See Tie::LDAP.

COPYRIGHT

Top

SEE ALSO

Top

Tie::LDAP, Net::LDAP


Tie-LDAP documentation  | view source Contained in the Tie-LDAP distribution.