FindGE (LDAP function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
Line 11: Line 11:
“A”.
“A”.
==Syntax==
==Syntax==
<p class="syntax">[%st =] %ld:FindGE( attrib, searchString, %doc,  -
{{Template:LDAP:FindGE syntax}}
                  [,&amp;amp;amp;nbsp;AttributesOnly=bool]        -
                  [,&amp;amp;amp;nbsp;ReturnAttributes=%sl]      -
                  [,&amp;amp;amp;nbsp;BaseObject=string] )
</p>


The syntax terms and most of the usage notes for this function are the
The syntax terms and most of the usage notes for this function are the
same as those for <var>[[FindEQ (LDAP function)|FindEQ]]</var>.
same as those for <var>[[FindEQ (LDAP function)|FindEQ]]</var>.


For additional information, see [[LDAP Helper#Using the Find methods|"Using the Find methods"]].
For additional information, see [[LDAP class#Using the Find methods|"Using the Find methods"]].
 
==See also==
==See also==
{{Template:LDAP:FindGE footer}}
{{Template:LDAP:FindGE footer}}

Revision as of 23:08, 15 August 2011

Retrieve records with greater attr string values from the LDAP directory (LDAP class)


This callable function retrieves all records (entries) from the LDAP directory for which the attribute type you specify has a value that matches equally or falls alphabetically after the search string you specify.

FindGE with a search string of A for the attribute type sn, for example, would find every entry keyed with an &amp;amp;ldquo;sn&amp;amp;rdquo; value that begins with &amp;amp;ldquo;A&amp;amp;rdquo;.

Syntax

[%number =] ldap:FindGE( string, string, doc, [AttributesOnly= boolean], - [ReturnAttributes= stringlist], [BaseObject= string])

The syntax terms and most of the usage notes for this function are the same as those for FindEQ.

For additional information, see "Using the Find methods".

See also