LDAPS_DELETE
Deletes an entry from an LDAP directory
Syntax
CALL LDAPS_DELETE(lHandle, entryName, rc);
Required Arguments
- lHandle
-
specifies the connection
handle that is returned by the LDAPS_OPEN CALL routine.
- entryName
-
names the entry that
is to be deleted from the LDAP directory.
- rc
-
receives a return code
that indicates success or failure.
Example
The following example
deletes an entry from an LDAP directory.
dn = "cn=alpair02.unx.com,o=Alphalite Airways,c=US";
rc=0;
call ldaps_delete(lHandle, entryName, rc);