public abstract class IQueryTuple
extends java.lang.Object
select e.salary+e.bonus as pay, object(e) as employee from EmpBean e
returns a collection of IQueryTuples each of which contain two values.
The number of values and their labels ( "pay" and "employee" in the example )
can be obtained from the iterator.Constructor and Description |
---|
IQueryTuple() |
Modifier and Type | Method and Description |
---|---|
abstract java.lang.Object |
getObject(int col)
value of the nth element in the SELECT clause.
|