public interface ITabularResultSet extends java.lang.Iterable<IResultSetRow>
Interface that provides the ability to consume a result set using rows.
IQueryService queryService = ...
String query = "SELECT [Resource ID], [Name] FROM [SOXIssue]";
IQuery query = queryService.buildQuery(query);
// Execute query and fetch results.
ITabularResultSet resultset = query.fetchRows(0);
for (IResultSetRow row : resultset) {
// process each row...
for (IField field : row) {
// process each field...
}
}
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<IPage> |
getPages()
Returns pages of rows.
|
java.lang.Iterable<IPage> getPages()
Licensed Materials - Property of IBM
OpenPages with Watson (PID: 5725-D51)
© Copyright IBM Corporation 2013, 2019. All Rights Reserved.
US Government Users Restricted Rights -
Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.