Microsoft SDK for Java

AdoEnums.IsolationLevel Class Fields

The IsolationLevel class contains the fields shown in the following table.

Constant Value Description
UNSPECIFIED -1 Indicates that the provider is using a different isolation level than specified, but that the level cannot be determined.
CHAOS 16 Indicates that you cannot overwrite pending changes from more highly isolated transactions.
BROWSE 256 Indicates that from one transaction you can view uncommitted changes in other transactions.
READUNCOMMITTED 256 Same as BROWSE.
CURSORSTABILITY 4096 Indicates that from one transaction you can view changes in other transactions only after they've been committed.
READCOMMITTED 4096 Same as CURSORSTABILITY.
REPEATABLEREAD 65536 Indicates that from one transaction you cannot see changes made in other transactions, but that requerying can bring new recordsets.
ISOLATED 1048576 Indicates that transactions are conducted in isolation of other transactions.
SERIALIZABLE 1048576 Same as ISOLATED.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.