Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public enum IsolationLevel
  2. {
  3. Unspecified = -1,
  4. Chaos = 16,
  5. ReadUncommitted = 256,
  6. ReadCommitted = 4096,
  7. RepeatableRead = 65536,
  8. Serializable = 1048576,
  9. Snapshot = 16777216,
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement