Documentation Archive Developer
Search
PATH  Documentation > WebObjects 4.5 > EOAccess Reference

Table of Contents

EOColumnTypes


Declared in: EOAccess/EOSchemaSynchronization.h


Protocol Description


This protocol describes the API for interacting with objects passed as arguments to the following EOSQLExpression methods:

You only need to know about this protocol if you are implementing schema synchronization API for a custom adaptor. In that case, you don't have to implement a class that adopts this protocol; EOSQLExpression's implementation of the schema synchronization API uses a private class that implements it. You only need to know about the protocol because your method implementations of the above methods needs to compare two objects that adopt the protocol.



Instance Methods



name

- (NSString *)name

Returns the receiver's name.

precision

- (unsigned)precision

Returns the receiver's precision.

scale

- (int)scale

Returns the receiver's scale.

width

- (unsigned)width

Returns the receiver's width.


Table of Contents