FactualUpdateResult


The return object type associated with a submitRowData request.

Superclass: NSObject
Declared In: FactualUpdateResult.h

Discussion

An successful update request (via the submitRowData) returns two pieces of information.

First, it returns an AffectedRowId, which is either the row identifier for an existing row that was updated, or the row identifier of a new row that was generated as a result of the update.

Second, it returns a boolean flag that specifies if the update request resulted in either an update (exists == True) or an insert (exists == Falase).



Properties

tableId
affectedRowId
exists

tableId


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

The id of the table related to the orignal request


affectedRowId


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

The Factual Row Id of the updated/inserted row.


exists


@property (
    nonatomic,
    readonly) BOOL exists; 
Discussion

A boolean that is True if the submit call updated an existing row. False if the call resulted in a new row.

Last Updated: Friday, January 28, 2011