wasCSharpSQLite – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | namespace System.Data |
2 | { |
||
3 | public enum ConnectionState |
||
4 | { |
||
5 | Broken = 16, |
||
6 | Closed = 0, |
||
7 | Connecting = 2, |
||
8 | Executing = 4, |
||
9 | Fetching = 8, |
||
10 | Open = 1 |
||
11 | } |
||
12 | } |
||
13 | |||
14 |