Combinations of SET AUTOaction Commands

Think of actions as a nested sequence. The COMMIT action is the innermost level, then CLOSE, then DISCONNECT. Events are also organized hierarchically; CRTFORM is the innermost level, then COMMIT, then COMMAND, and, finally, FIN.

In general, you should not set the outer of two actions to occur more frequently than the inner action. Recommended combinations follow:

   When AUTOCOMMIT     is set to FIN,
         AUTOCLOSE      must be   FIN,
         AUTODISCONNECT must be   FIN*.
 
    When AUTOCLOSE      is set to FIN
         AUTODISCONNECT must be   FIN.
    When AUTOCOMMIT     is set to COMMAND or CRTFORM,
         AUTOCLOSE      may be    FIN, COMMAND or COMMIT,
         AUTODISCONNECT may be    FIN, COMMAND or COMMIT.
    When AUTOCLOSE      is set to COMMAND or COMMIT,
         AUTODISCONNECT may be    FIN, COMMAND or COMMIT.
    When AUTOCLOSE or AUTODISCONNECT is set to COMMIT,
         AUTOCOMMIT     may be    COMMAND or CRTFORM.
    * Violations of this rule can cause unpredictable behavior.

Note For DB2:


Information Builders