FactualQueryResult |
The return object type associated with a queryTable API call.
Superclass: NSObject
Declared In: FactualQueryResult.h
Upon successful query execution, this object information about the resulting record set and zero or more FactualRow objects.
tableId |
@property ( nonatomic, readonly) NSString* tableId;
The id of the table from which this result set was produced
rowCount |
@property ( nonatomic, readonly) NSInteger rowCount;
The number of FactualRow objects in this recordset
columnCount |
@property ( nonatomic, readonly) NSInteger columnCount;
The number of columns/fields in each FactualRow object
totalRows |
@property ( nonatomic, readonly) NSUInteger totalRows;
The total rows in the table
rows |
@property ( nonatomic, readonly) NSArray* rows;
The array of FactualRow objects
columns |
@property ( nonatomic, readonly) NSArray* columns;
The column names as an array of NSString objects
Last Updated: Friday, January 28, 2011