poIQueryIterator GetDataList

Gets the query results for the current entity.

Syntax

poIQueryIterator_handle GetDataList

Application

HyperView Tcl Query

Description

This command retrieves the query results for the current entity.

Example

To populate a list with the results of a query control handle:
myQueryName GetIteratorHandle myIteratorName
myIteratorName First
while { [myIteratorName Valid] == "true" } {
lappend myList [myIteratorName GetDataList]
myIteratorName Next }

Errors

Returns the iterator ID, or NULL on error.