Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove superfluous namespace qualifiers. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
075e88e9e6090b241ef8802a410f5a15 |
User & Date: | mistachkin 2016-03-22 20:20:39.211 |
Context
2016-03-22
| ||
20:22 | Add test constraints for Mono 2.11. Adjust C# compiler warning level in the test for ticket [4a791e70ab]. check-in: 942a9be029 user: mistachkin tags: trunk | |
20:20 | Remove superfluous namespace qualifiers. check-in: 075e88e9e6 user: mistachkin tags: trunk | |
20:20 | Improve the SQL type detection code in the ColumnType method. check-in: 1f028b5b16 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteEnlistment.cs.
︙ | |||
27 28 29 30 31 32 33 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | - + | { _transaction = cnn.BeginTransaction(GetSystemDataIsolationLevel( cnn, scope, defaultIsolationLevel, throwOnUnavailable, throwOnUnsupported)); _scope = scope; |
︙ | |||
60 61 62 63 64 65 66 | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | - - + | throw new InvalidOperationException( "isolation level is unavailable"); } return defaultIsolationLevel; } |
︙ |