Ticket #7 (closed defect: fixed)
returnObjectFields feature request
| Reported by: | teddyrpayne@… | Owned by: | dhughes |
|---|---|---|---|
| Type: | defect | Priority: | normal |
| Milestone: | Beta Candidate 2 (BC2) | Component: | Reactor - Gateway |
| Version: | 1.0 | Severity: | normal |
| Keywords: | Cc: |
Description
returnObjectField() sets returned columns one a time for a given query object.
returnObjectField(alias,column name);
There is a method that is apart of the query gateway returnObjectFields, which is the plural version.
My feature request would be to redefine this method to take an additional argument.
returnObjectFields(alias,column list);
So an example would be returnObjectFields("Suppliers","Address,City"); This would return the two columns in the order specified by the list.
So the first argument is string for the alias and the second argument would also be a string to take the fieldAliasList.
This would simplify the need to specify mutliple returnObjectField() calls for the columns we want to return for the OO queries.

