Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Adjust comment wording. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b7307ff8d371a8d9a264c83ce4056b1f |
User & Date: | mistachkin 2017-11-01 01:00:34.811 |
Context
2017-11-01
| ||
01:15 | Since the debugger handling in MaybeBreakIntoDebugger is opt-in, move it before the check for the 'No_PreLoadSQLite' configuration setting. check-in: 2bed4a9b30 user: mistachkin tags: trunk | |
01:00 | Adjust comment wording. check-in: b7307ff8d3 user: mistachkin tags: trunk | |
00:58 | Add the 'PreLoadSQLite_BreakIntoDebugger' configuration setting to improve debugging support. Also, add some logging to the SQLiteProviderFactory class, pursuant to [d6e1fdba1e]. check-in: 320066944e user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite/UnsafeNativeMethods.cs.
︙ | ︙ | |||
331 332 333 334 335 336 337 | #endregion ///////////////////////////////////////////////////////////////////////// #region Internal Methods /// <summary> /// If the "PreLoadSQLite_BreakIntoDebugger" configuration setting is | | | 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | #endregion ///////////////////////////////////////////////////////////////////////// #region Internal Methods /// <summary> /// If the "PreLoadSQLite_BreakIntoDebugger" configuration setting is /// present (e.g. via the environment), give the interactive user an /// opportunity to attach a debugger to the current process; otherwise, /// do nothing. /// </summary> private static void MaybeBreakIntoDebugger() { lock (staticSyncRoot) { |
︙ | ︙ |