The
cmdSelect object's column list as set by the setColumns()
method.
Example
The following example
uses a comma-delimited string to set the columns to be
retrieved. It then prints out the columns specified by the setColumns() method.
var sel = new cmdSelect("AddressBook");
sel.setColumns("FirstName, LastName, Email");
response.write(sel.getColumns());