Class KEEPLOCK_MODE

Object
KEEPLOCK_MODE

public class KEEPLOCK_MODE extends Object
Keep lock mode used on a CTBase.SetKeepLock(int) call
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Release all locks.
    static final int
    Keep all locks acquired before and during transaction.
    static final int
    Release only locks obtained within transaction and/or locks on records updated within transaction.
    static final int
    Unconditionally keep all locks acquired before transaction began.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • FREE

      public static final int FREE
      Release all locks. Clear LKISAM state. This is the default mode.
      See Also:
    • LOCK

      public static final int LOCK
      Keep all locks acquired before and during transaction. The LKISAM state is not cleared.
      See Also:
    • OUT

      public static final int OUT
      Release only locks obtained within transaction and/or locks on records updated within transaction. The LKISAM state is not cleared.
      See Also:
    • OUTALL

      public static final int OUTALL
      Unconditionally keep all locks acquired before transaction began. Free locks obtained within the transaction. The LKISAM state is not cleared.
      See Also:
  • Constructor Details

    • KEEPLOCK_MODE

      public KEEPLOCK_MODE()