wasCSharpSQLite – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace System.Data
2 {
3 public enum IsolationLevel
4 {
5 Chaos = 16,
6 ReadCommitted = 4096,
7 ReadUncommitted = 256,
8 RepeatableRead = 65536,
9 Serializable = 1048576,
10 Snapshot = 16777216,
11 Unspecified = -1
12 }
13 }