ldap_count_entries()--Retrieve Count of LDAP Entries


  Syntax
 #include <ldap.h>
 
 int ldap_count_entries(
        LDAP           *ld,
        LDAPMessage    *result)

  Library Name/Service Program: QSYS/QGLDCLNT

  Default Public Authority: *USE

  Threadsafe: Yes

The ldap_count_entries() API returns the number of entries contained in a search result chain. It can also be used to count the number of entries that remain in a chain if called with a message, entry or continuation reference returned by ldap_first_message(), ldap_next_message(), ldap_first_entry(), ldap_next_entry(), ldap_first_reference() or ldap_next_reference(), respectively.


Authorities and Locks

No IBM® i authority is required.


Parameters

ld
(Input) The LDAP pointer returned by a previous call to ldap_init(), ldap_ssl_init(), or ldap_open().

result
(Input) The result returned by a call to ldap_result() or by one of synchronous search routines (ldap_search_s() or ldap_search_st()).

Return Value

Number of Entries
If the request is successful, ldap_count_entries() returns the number of entries contained in a search result chain. It can also be used to count the number of entries that remain in a chain if called with a message, entry or continuation reference.

-1
if the request was not successful.

Error Conditions

If ldap_count_entries() is not successful, ld_errno will be set to indicate the error. See LDAP Client API Error Conditions for possible LDAP error code values. Use ldap_get_errno() function to retrieve the error information.


Error Messages

The following message may be sent from this function.

Message ID Error Message Text
CPF3CF2 E Error(s) occurred during running of ldap_count_entries API.


Related Information


API introduced: V4R3

[ Back to top | LDAP APIs | APIs by category ]