System.Data.SQLite

Check-in [a93b89dbd9]
Login

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

Overview
Comment:Support Enlist property
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: a93b89dbd99da0492b4473519c6fa274949faa0c
User & Date: rmsimpson 2006-01-27 22:41:23.000
Context
2006-01-30
23:21
Minor fixes check-in: b11a6b9a96 user: rmsimpson tags: sourceforge
2006-01-27
22:41
Support Enlist property check-in: a93b89dbd9 user: rmsimpson tags: sourceforge
22:41
Documentation updates check-in: 5b7117d61a user: rmsimpson tags: sourceforge
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteConnectionStringBuilder.cs.
134
135
136
137
138
139
140




















141
142
143
144
145
146
147
      }
      set
      {
        this["Data Source"] = value;
      }
    }





















    /// <summary>
    /// Gets/sets the database encryption password
    /// </summary>
    [Browsable(true)]
    public string Password
    {
      get







>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>







134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
      }
      set
      {
        this["Data Source"] = value;
      }
    }

    /// <summary>
    /// Determines whether or not the connection will automatically participate
    /// in the current distributed transaction (if one exists)
    /// </summary>
    [DisplayName("Automatic Enlistment")]
    [Browsable(true)]
    [DefaultValue(true)]
    public bool Enlist
    {
      get
      {
        if (ContainsKey("Enlist") == false) return true;

        return (this["Enlist"].ToString() == "Y");
      }
      set
      {
        this["Enlist"] = (value == true) ? "Y" : "N";
      }
    }
    /// <summary>
    /// Gets/sets the database encryption password
    /// </summary>
    [Browsable(true)]
    public string Password
    {
      get