Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Minor correction to the previous check-in. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | tkt-1f7bfff467 |
Files: | files | file ages | folders |
SHA1: |
597c25de3b3ac391026a0e2717e1f143 |
User & Date: | mistachkin 2016-10-28 21:19:04.086 |
Context
2016-10-28
| ||
21:30 | Improve the new test. check-in: 588b7768a0 user: mistachkin tags: tkt-1f7bfff467 | |
21:19 | Minor correction to the previous check-in. check-in: 597c25de3b user: mistachkin tags: tkt-1f7bfff467 | |
21:17 | Do not use internal when private can be used instead. check-in: 5dd4d355c7 user: mistachkin tags: tkt-1f7bfff467 | |
Changes
Changes to System.Data.SQLite/SQLiteTransaction.cs.
︙ | ︙ | |||
310 311 312 313 314 315 316 | /// </summary> /// <param name="throwError"> /// Non-zero to throw an exception if a state inconsistency is found. /// </param> /// <returns> /// Non-zero if this transaction is valid; otherwise, false. /// </returns> | | | 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | /// </summary> /// <param name="throwError"> /// Non-zero to throw an exception if a state inconsistency is found. /// </param> /// <returns> /// Non-zero if this transaction is valid; otherwise, false. /// </returns> internal bool IsValid(bool throwError) { if (_cnn == null) { if (throwError == true) throw new ArgumentNullException("No connection associated with this transaction"); else return false; } |
︙ | ︙ |