System.Data.SQLite

Check-in [c29222dd3a]
Login

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: c29222dd3a993f03a6400fa4145f7e52ff34e7ae
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
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteLog.cs.
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.
                //







|







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.
                //