Field Summary |
|
final public static int | IL_DEFAULT Numeric constant representing the default isolation level used by
OJB - current used default level is
IsolationLevels.IL_READ_UNCOMMITTED . |
final public static int | IL_NONE Numeric constant representing an no-op isolation level. |
final public static int | IL_OPTIMISTIC Numeric constant representing the optimistic locking isolation level.
The lock manager does not perform any pessimistic locking action. |
final public static int | IL_READ_COMMITTED Numeric constant representing the commited read isolation level. |
final public static int | IL_READ_UNCOMMITTED Numeric constant representing the uncommited read isolation level.
Obtaining two concurrent write locks on a given object is not
allowed. |
final public static int | IL_REPEATABLE_READ Numeric constant representing the repeatable read isolation level. |
final public static int | IL_SERIALIZABLE Numeric constant representing the serializable transactions isolation level. |
final public static String | LITERAL_IL_NONE Literal constant representing the uncommited read isolation level. |
final public static String | LITERAL_IL_OPTIMISTIC Literal constant representing the optimistic locking isolation level. |
final public static String | LITERAL_IL_READ_COMMITTED Literal constant representing the commited read isolation level. |
final public static String | LITERAL_IL_READ_UNCOMMITTED Literal constant representing the uncommited read isolation level. |
final public static String | LITERAL_IL_REPEATABLE_READ Literal constant representing the repeatable read isolation level. |
final public static String | LITERAL_IL_SERIALIZABLE Literal constant representing the serializable transactions isolation level. |