Active Directory/Connect: Difference between revisions

→‎{{header|Perl 6}}: Add a Perl 6 example
m (→‎{{header|Go}}: Aligned code in import clause with rest of program.)
(→‎{{header|Perl 6}}: Add a Perl 6 example)
Line 299:
my $mesg = $ldap->bind( $bind_dn, password => $bind_pass );
</lang>
 
=={{header|Perl 6}}==
Using module LDAP - bindings to the openLDAP library. Requires an LMDB instance.
 
<lang perl6>use LMDB;
 
my %DB := LMDB::DB.open(:path<some-dir>, %connection-parameters);
</lang>
 
%DB may be accessed, read from and written to like a native hash.
 
=={{header|PHP}}==
10,327

edits