QueryNew()

Creates a new query object with the columns past in of the optional types

Usage

QUERY = QueryNew( namelist, typelist )
Argument Summary
namelist column name list
typelist column type list [optional]

Calling

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

QueryNew(
   namelist=?, 
   typelist=?
);

Supports passing parameters as a structure using ArgumentCollection:

QueryNew( ArgumentCollection={
   namelist : ?, 
   typelist : ?
} );