Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typo in the previous check-in. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c29222dd3a993f03a6400fa4145f7e52 |
User & Date: | mistachkin 2018-05-29 01:57:50.216 |
Context
2018-05-29
| ||
02:45 | Update the embedded resource file for .NET Core. check-in: f991b0ecee user: mistachkin tags: trunk | |
01:57 | Fix typo in the previous check-in. check-in: c29222dd3a user: mistachkin tags: trunk | |
01:55 | Add support for the 'Disable_SQLiteLog' configuration setting. check-in: e7b7d00d63 user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/SQLiteLog.cs.
︙ | ︙ | |||
208 209 210 211 212 213 214 | #endif // // NOTE: Logging is enabled by default unless the configuration // setting "Disable_SQLiteLog" is present. // if (UnsafeNativeMethods.GetSettingValue( | | | 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 | #endif // // NOTE: Logging is enabled by default unless the configuration // setting "Disable_SQLiteLog" is present. // if (UnsafeNativeMethods.GetSettingValue( "Disable_SQLiteLog", null) == null) { _enabled = true; } // // NOTE: For now, always setup the default log event handler. // |
︙ | ︙ |