Item method: QueryDBRecord collection

Syntax

Item(number)

Description

The Item method returns the QueryDBRecord object that exists at the number position in the QueryDBRecord collection.

Parameters

Parameter Description

Number

Specify the position number in the collection of the QueryDBRecord object that you want returned.

Returns

A reference to a QueryDBRecord object if successful, NULL otherwise.

Example

For &I = 1 to &QueryDBRecordColl.Count; 
   &MyQueryDBRecord = &QueryDBRecordColl.Item(&I); 
   /* do processing */ 
End-For;