Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove duplicate method. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | tkt-1f7bfff467 |
Files: | files | file ages | folders |
SHA1: |
32b2f62864a4589250479a539c37def6 |
User & Date: | mistachkin 2016-11-04 02:10:14.489 |
Context
2016-11-08
| ||
18:57 | Merge updates from trunk. check-in: 2c2f3c7ced user: mistachkin tags: tkt-1f7bfff467 | |
2016-11-04
| ||
02:10 | Remove duplicate method. check-in: 32b2f62864 user: mistachkin tags: tkt-1f7bfff467 | |
02:00 | Add 'AllowNestedTransactions' connection flag to enable nested transactions. check-in: ffd3c1b1d8 user: mistachkin tags: tkt-1f7bfff467 | |
Changes
Changes to System.Data.SQLite/SQLiteTransaction.cs.
︙ | ︙ | |||
99 100 101 102 103 104 105 | cmd.ExecuteNonQuery(); } } _cnn._transactionLevel--; _cnn = null; } | < < < < < < < < < < < < < | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | cmd.ExecuteNonQuery(); } } _cnn._transactionLevel--; _cnn = null; } /////////////////////////////////////////////////////////////////////////////////////////////// /// <summary> /// Attempts to start a transaction. An exception will be thrown if the transaction cannot /// be started for any reason. /// </summary> /// <param name="deferredLock">TRUE to defer the writelock, or FALSE to lock immediately</param> |
︙ | ︙ |