System.Data.SQLite

Check-in [4e730fa902]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Use the EventArg connection string for debug tracing.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 4e730fa902b90e442c2ab9067a93e6a40cd37d6d
User & Date: mistachkin 2018-12-23 18:32:08.106
Context
2018-12-24
03:14
Add support for the sqlite3changeset_start_v2() and sqlite3changeset_start_v2_strm() interfaces. check-in: 291cfeef7e user: mistachkin tags: trunk
2018-12-23
18:32
Use the EventArg connection string for debug tracing. check-in: 4e730fa902 user: mistachkin tags: trunk
04:56
Add HidePassword connection flag to remove the password from the connection string once the database is opened. Pursuant to [23d8d6171e]. check-in: 02ed8cae60 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteConnection.cs.
4639
4640
4641
4642
4643
4644
4645
4646

4647
4648
4649
4650
4651
4652
4653
              SQLiteConnectionEventType.Opened, eventArgs, null, null, null,
              null, eventArgConnectionString, new object[] { eventArgOpts }));

#if DEBUG
          _debugString = HelperMethods.StringFormat(
              CultureInfo.InvariantCulture,
              "openThreadId = {0}, connectionString = {1}",
              HelperMethods.GetThreadId(), _connectionString);

#endif
        }
        catch
        {
          _connectionState = oldstate;
          throw;
        }







|
>







4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
              SQLiteConnectionEventType.Opened, eventArgs, null, null, null,
              null, eventArgConnectionString, new object[] { eventArgOpts }));

#if DEBUG
          _debugString = HelperMethods.StringFormat(
              CultureInfo.InvariantCulture,
              "openThreadId = {0}, connectionString = {1}",
              HelperMethods.GetThreadId(),
              eventArgConnectionString);
#endif
        }
        catch
        {
          _connectionState = oldstate;
          throw;
        }