ldapEntryExists

function

Library: LDAP support (OMLDAP legacy)
Include: omldap.xin

Returns: true if an entry exists in the current ldapAttribute, false otherwise


Declaration
define external switch function ldapEntryExists
              value ldapAttribute entry

Argument definitions

entry
The name of an entry.


Purpose

This function returns a switch value specifying whether an entry exists in the current ldapAttribute.

This example shows how to exit when there are no more LDAP entries (ldapEntryExists returns false).

     include "omldap.xin"
  
     process
        local ldapAttribute my-entry variable
        ...
        repeat
           exit when not ldapEntryExists my-entry
  
       ; display the entry name
           output ldapEntryGetName my-entry
  
        ; display all attributes
           ...
  
  again