QueryRowstruct()

Returns all the data in a query for a given row but as a structure

Usage

STRUCTURE = QueryRowstruct( query, row )
Argument Summary
query query
row rowNo

Calling

Supports named-parameter calling allowing you to use the function like:

QueryRowstruct(
   query=?, 
   row=?
);

Supports passing parameters as a structure using ArgumentCollection:

QueryRowstruct( ArgumentCollection={
   query : ?, 
   row : ?
} );