Next: Auxiliary functions, Previous: Search, Up: Functions [Contents][Index]
The functions below take result set descriptor as their first
argument (rd), returned by a previous call to search
. If
the descriptor does not refer to a valid result set, they raise the
e_range
exception.
Returns DN of the returned LDAP object.
Returns count of entries in the result.
Selects the next entry in the result set.
The function returns true
(1) on success and false
(0)
if all entries in the result set have already been visited.
Returns number of attributes available in each entry of the result set rd.
Returns name of the nth attribute in the result set rd.
If n is negative or is greater than the actual number of
attributes, the e_range
exception is raised.
Returns number of values for the attribute attr in the current entry of the result set rd.
Retrieves nth value of the attribute attr from the current entry of the result set rd.
If n is negative or is greater than the actual number of values
retrieved for that attribute (as reported by
search_result_attr_value_count
), the e_range
exception
is raised.