PATH |
Enterprise Objects Framework User Defaults
This document lists the user defaults that Enterprise Objects Framework uses to customize its behavior. For information on how to set these defaults, see the NSUserDefaults class specification in the Foundation Reference.
Defaults for Enterprise Objects Framework
The following table lists the defaults used to customize the behavior of the classes in the Framework.
Default Name | Description |
EOAdaptorDebugEnabled | A boolean value that determines whether the access layer logs database server interactions, including connection attempts, transaction activity (begin, rollback, commit), and SQL statements (SELECT, UPDATE, and so on). The default is NO, not to log. For more information, see the EOAdaptorContext methods: setDebugEnabledDefault, debugEnabledDefault. |
EOAdaptorQuotesExternalNames | A boolean value that determines whether EOSQLExpressions quote external names when they are referenced in SQL statements. The default behavior is NO, not to quote. For more information, see the EOSQLExpression methods setUseQuotedExternalNames and useQuotedExternalNames |
EOAdaptorUseBindVariables | A boolean value that determines whether the access layer's SQL generation process uses bind variables (for Oracle and Informix). The default is YES, to use bind variables. For more information, see the EOSQLExpression methods setUseBindVariables and useBindVariables. |
EODeferredFaultDebugLevel | An integer value that the determines the level of logging the access layer performs as it creates and fires deferred faults. A value of 0 (the default) disables logging, a value of 1 logs messages when deferred faults are created, and a value of 2 or greater logs messages when deferred faults are created or fired. It can be helpful to enable logging when you're debugging a custom enterprise object class that uses deferred fault creation. |
EOEventLoggingEnabled | A boolean value that determines whether event logging is enabled for event classes as they are registered. For more information, see the EOEventCenter method registerEventClass (in Objective-C, registerEventClass:classPointer: and registerEventClass:handler:). The default is NO, logging isn't enabled. |
EOEventLoggingLimit | An integer value that sets the maximum number of events the event logging system logs. When the logging limit is reached, the logging system attempts to purge old events before logging new ones. If the system is unable to purge old events, event logging is aborted. The default logging limit is 200,000. For more information, see the EOEventCenter method markStartOfEvent. |
EOEventLoggingOverflowDisplay | A boolean value that determines whether the event logging system logs a message when the event logging limit is reached. If YES, it logs messages when the event center truncates the log and also when event logging is aborted due to overflow. |
EOFDebugEditingContext | A boolean value that determines whether the control layer logs a message when an object is changed. The logging occurs as the result of registering an undo operation with an undo manager, and the message has the form "Record Undo for object...". The default is NO, not to log messages. |
EOLockingDebugEnabled | A
boolean value that determines whether Enterprise Objects Framework
logs messages when code that needs to be protected by a lock:
|
NSProjectSearchPath | An array of paths in which EOAccess searches for framework project directories that contain models. The default is "../..", so during development, your application uses changes made to your project's model without rebuilding. |
Defaults for EOModeler
The following table lists the defaults used to customize the behavior of EOModeler.
Default Name | Description |
BundlesToLoad | An
array that lists the paths in which EOModeler looks for extensions.
Remember to include parentheses when you set it. For example:
defaults write EOModeler BundlesToLoad "(/System/Developer/Applications/ EOModeler.app/Resources/DiagramEditor.bundle, $HOME/eoexamples/ModelerBundle/ModelerBundle.bundle) " |
DisableAdvancedOptions | A boolean value that determines whether EOModeler runs in simplified mode. If set to YES, the advanced inspectors don't appear, the choices of table view columns is limited, and so on. The default is NO. |
DisableAttributeDetails | A
boolean value that determines whether the consistency checker verifies
attribute definitions. It verifies that:
|
DisableConsistencyCheckOnSave | A boolean value that determines whether EOModeler runs the consistency checker when a model is saved. The default value is NO, the consistency check is not disabled (the check is performed). You can set this default in EOModeler's preferences panel. |
DisableEntityStoredProcedure | A boolean value that determines whether the consistency checker verifies that an entity's stored procedures (for performing a particular operation) match the entity's attributes. The default value is NO, the consistency check is not disabled (the check is performed). You can set this default in EOModeler's preferences panel. |
DisableExternalNameCheck | A boolean value that determines whether the consistency checker verifies the existence of external names in entities and attributes (and the existence of a value class for attributes). The default value is NO, the consistency check is not disabled (the check is performed). You can set this default in EOModeler's preferences panel. |
DisableInheritanceCheck | A
boolean value that determines whether the consistency checker verifies
entity inheritance relationships. It verifies that:
|
DisablePrimaryKeyCheck | A boolean value that determines whether the consistency checker verifies the existence of primary key definitions. The default value is NO, the consistency check is not disabled (the check is performed). You can set this default in EOModeler's preferences panel. |
DisableRelationshipCheck | A
boolean value that determines whether the consistency checker verifies
relationship definitions. It verifies that:
|
DisableStoredProcedureCheck | A boolean value that determines whether the consistency checker verifies the existence of external names for stored procedures and their attributes. The default value is NO, the consistency check is not disabled (the check is performed). You can set this default in EOModeler's preferences panel. |
RecordFetchLimit | An integer that specifies how many rows the Data Browser fetches before asking users if they want to fetch all, fetch another n rows, or stop fetching. The default is 100. |
SkipBeautifyNamesOnModelCreation | A boolean value that determines the naming scheme used for entity and attribute names in new models. If YES, EOModeler uses the database table and column names as the entity and attribute names (including case). If NO, EOModeler beautifies the names as described in the EOEntity and EOAttribute methods beautifyName. The default is NO. |
Top