Inherits from NSObject
Declared in KNYSyncMetaObject.h

Overview

Meta object for creating the database tables in the local device database.

Properties

datatype

@property (nonatomic, readwrite) sqliteDataType datatype

name

@property (nonatomic, retain) NSString *name

Instance Methods

addColumn:

add new column to a SyncObject.

- (void)addColumn:(NSString *)columnName

Parameters

columnName

columnName

Discussion

add new column to a SyncObject.

Declared In

KNYSyncMetaObject.h

addColumn:withtype:

add new column with specified data type to a SyncObject.

- (void)addColumn:(NSString *)columnName withtype:(sqliteDataType)dataType

Parameters

columnName

columnName

columnType

columnType

Discussion

add new column with specified data type to a SyncObject.

Declared In

KNYSyncMetaObject.h

columns

number of columns of a SyncObject

- (NSArray *)columns

Return Value

number of columns

Discussion

number of columns of a SyncObject

Declared In

KNYSyncMetaObject.h

create

create a new syncMetaObject.

- (void)create

Discussion

create a new syncMetaObject.

Declared In

KNYSyncMetaObject.h