Returns all column values in the result set as an array of strings (for Perl, a reference to an array of strings).
The result contains a pair of strings for each item:
For example, given a query asking for ID and Headline, a successful result of calling this method would be an array containing four elements:
By returning a pair of strings for each column, you can design code independent of the order of the items in the result set.
The MoveNext parameter controls whether this function calls the MoveNext method before retrieving the data. If there is an error executing the MoveNext method, the return value of GetAllColumnValues is a result array containing one element, the String form of the ErrorFetchStatus value that would have been returned from the MoveNext method. A non-error result will always have an even number of elements in the array.
VBScript
resultset.GetAllColumnValues MoveNext
Perl
$resultset->GetAllColumnValues(MoveNext);
For Perl, a reference to an array of Strings containing the column names and column values.