Function EN Version 10.02

@ADSISearchObjectGetNextRow

Internet

Syntax

@ADSISearchObjectGetNextRow(ADSIHANDLE;ADSISEARCHRESULT);

Description

Retrieves the next row of the search result.

Return:
In case of an error, @Error; in case of success, TRUE; and if no row is available anymore, FALSE.

ADSIHANDLE:
ADSIHANDLE through which the connection was opened via @ADSIOpenSearchObject to the DC was established.

ADSISEARCHRESULT:
Ein ADSISEARCHRESULTHANDLE, which was created via @ADSISearchObjectExecuteSearch was created.

Example: @ADSISearchObjectGetNextRow(ADSIHANDLE;ADSISEARCHRESULT);

Loop:=@ADSISearchObjectGetFirstRow(ADSIObj;ADSISearchResult);   Loop:=@ADSISearchObjectGetNextRow(ADSIObj;ADSISearchResult);

This example outputs the data from all columns of all user objects for the DC "mycompany" to the ApiLog (limited to MaxRows=11).

Note : This text was machine-translated and may contain inaccuracies.