Up

EOSQLExpressionFactory class documentation

Authors

Generated by Debian

Date: Generated at 2024-06-30 11:09:52 +0000

Software documentation for the EOSQLExpressionFactory class

EOSQLExpressionFactory : NSObject

Declared in:
EOAccess/EOSQLExpressionFactory.h
Description forthcoming.

Instance Variables

Method summary

sqlExpressionFactoryWithAdaptor: 

+ (EOSQLExpressionFactory*) sqlExpressionFactoryWithAdaptor: (EOAdaptor*)adaptor;
Description forthcoming.

adaptor 

- (EOAdaptor*) adaptor;
Description forthcoming.

createExpressionWithEntity: 

- (EOSQLExpression*) createExpressionWithEntity: (EOEntity*)entity;
Description forthcoming.

deleteStatementWithQualifier: entity: 

- (EOSQLExpression*) deleteStatementWithQualifier: (EOQualifier*)qualifier entity: (EOEntity*)entity;
Description forthcoming.

expressionClass 

- (Class) expressionClass;
Description forthcoming.

expressionForEntity: 

- (EOSQLExpression*) expressionForEntity: (EOEntity*)entity;
Description forthcoming.

expressionForString: 

- (EOSQLExpression*) expressionForString: (NSString*)string;
Description forthcoming.

initWithAdaptor: 

- (id) initWithAdaptor: (EOAdaptor*)adaptor;
Description forthcoming.

insertStatementForRow: withEntity: 

- (EOSQLExpression*) insertStatementForRow: (NSDictionary*)row withEntity: (EOEntity*)entity;
Description forthcoming.

selectStatementForAttributes: lock: fetchSpecification: entity: 

- (EOSQLExpression*) selectStatementForAttributes: (NSArray*)attributes lock: (BOOL)lock fetchSpecification: (EOFetchSpecification*)fetchSpec entity: (EOEntity*)entity;
Description forthcoming.

updateStatementForRow: qualifier: withEntity: 

- (EOSQLExpression*) updateStatementForRow: (NSDictionary*)row qualifier: (EOQualifier*)qualifier withEntity: (EOEntity*)entity;
Description forthcoming.



Instance Variables for EOSQLExpressionFactory Class

_adaptor

@protected EOAdaptor* _adaptor;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_expressionClass

@protected Class _expressionClass;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.





Up