- Conforms To:
- NSObject
- Declared In:
- RTSQLConstraint.h
- - name
- - table
- - constraintType
- - deferrable
- - initialyDeferrable
- (NSString*)constraintType
Returns a description of what type of constraint the object is. The returned value should be one of the following: "Primary Key", "Foreign Key", "Check", or "Unique"
- (BOOL)deferrable
YES if this constraint can be deferred until a transaction is committed.
- (BOOL)initialyDeferrable
YES if this constraint is deferrable by default.
- (NSString*)name
Returns the name of the constraint.
- (id <RTSQLTable>)table
Returns the table this constraint is associated with.