Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | In SetTableError, avoid logging null virtual table error messages. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2de277f55487ca2c12170fed512aa7be |
User & Date: | mistachkin 2018-01-15 19:22:47.950 |
Context
2018-01-22
| ||
20:01 | Update SQLite core library to the 3.22.0 release. check-in: 4089ea4f30 user: mistachkin tags: trunk | |
2018-01-15
| ||
19:22 | In SetTableError, avoid logging null virtual table error messages. check-in: 2de277f554 user: mistachkin tags: trunk | |
18:18 | Correct and enhance the alignment diagnostics added by check-in [0621d7037c]. check-in: 7ca42fb6c0 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteModule.cs.
︙ | ︙ | |||
5974 5975 5976 5977 5978 5979 5980 | bool logErrors, bool logExceptions, string error ) { try { | | | 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 | bool logErrors, bool logExceptions, string error ) { try { if (logErrors && (error != null)) { SQLiteLog.LogMessage(SQLiteErrorCode.Error, HelperMethods.StringFormat( CultureInfo.CurrentCulture, "Virtual table error: {0}", error)); /* throw */ } } |
︙ | ︙ |