FactualQueryResult


The return object type associated with a queryTable API call.

Superclass: NSObject
Declared In: FactualQueryResult.h

Discussion

Upon successful query execution, this object information about the resulting record set and zero or more FactualRow objects.



Properties

tableId
rowCount
columnCount
totalRows
rows
columns

tableId


@property (
    nonatomic,
    readonly) NSString* tableId; 
Discussion

The id of the table from which this result set was produced


rowCount


@property (
    nonatomic,
    readonly) NSInteger rowCount; 
Discussion

The number of FactualRow objects in this recordset


columnCount


@property (
    nonatomic,
    readonly) NSInteger columnCount; 
Discussion

The number of columns/fields in each FactualRow object


totalRows


@property (
    nonatomic,
    readonly) NSUInteger totalRows; 
Discussion

The total rows in the table


rows


@property (
    nonatomic,
    readonly) NSArray* rows; 
Discussion

The array of FactualRow objects


columns


@property (
    nonatomic,
    readonly) NSArray* columns; 
Discussion

The column names as an array of NSString objects

Last Updated: Friday, January 28, 2011