Returns the value stored in the specified column of the current row.
If the cursor is not positioned at a record, or the field's value has not been set, the returned Variant will be NULL. To advance the cursor to the next row, you must call the MoveNext method.
In the current version of the IBM® Rational® ClearQuest® API, the Variant is always set as a string, but future versions might let you initialize the Variant to the most appropriate native type.
Columns are numbered from 1 to N, not 0 to N-1.
VBScript
resultset.GetColumnValue columnNum
Perl
$resultset->GetColumnValue(columnNum);
For Perl, a String containing the column value.