Constant |
Value |
Description |
adXactUnspecified |
-1 |
Cannot use the provided isolation level and cannot determine the isolation level |
adXactChaos |
16 |
Cannot overwrite higher level transactions |
adXactBrowse |
256 |
Allows you to view uncommitted changes in other transactions |
adXactReadUncommitted |
256 |
Same as adXactBrowse |
adXactCursorStability |
4096 |
Allows you to view changes in other transactions only after they are committed |
adXactReadCommitted |
4096 |
Same as adXactCursorStability |
adXactRepeatableRead |
65536 |
Cannot see changes made in other transactions, but allows you to requery |
adXactIsolated |
1048576 |
Your transactions are completely isolated from all other transactions |
adXactSerializable |
1048576 |
Same as adXactIsolated |