Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove trailing whitespace. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2435b29a4fd17b4779a8c6e26e06141f |
User & Date: | mistachkin 2018-01-25 23:59:37.391 |
Context
2018-01-26
| ||
01:11 | Make it possible to determine which test is associated with a connection object (e.g. being closed, disposed, etc). check-in: d142c335ab user: mistachkin tags: trunk | |
00:00 | Merge updates from trunk. check-in: e36ed56d66 user: mistachkin tags: tkt-5cee5409f8 | |
2018-01-25
| ||
23:59 | Remove trailing whitespace. check-in: 2435b29a4f user: mistachkin tags: trunk | |
23:52 | Further fixes to the internal debugging interfaces, primarily focused on thread-safety. check-in: 29690b4981 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteTransactionBase.cs.
︙ | ︙ | |||
57 58 59 60 61 62 63 | /// <summary> /// Gets the isolation level of the transaction. SQLite only supports Serializable transactions. /// </summary> public override IsolationLevel IsolationLevel { get { CheckDisposed(); return _level; } } | | | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | /// <summary> /// Gets the isolation level of the transaction. SQLite only supports Serializable transactions. /// </summary> public override IsolationLevel IsolationLevel { get { CheckDisposed(); return _level; } } /////////////////////////////////////////////////////////////////////////////////////////////// #region IDisposable "Pattern" Members private bool disposed; private void CheckDisposed() /* throw */ { #if THROW_ON_DISPOSED |
︙ | ︙ |