System.Data.SQLite

Check-in [d649417b2f]
Login

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

Overview
Comment:Merge updates from trunk.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | designOptions
Files: files | file ages | folders
SHA1: d649417b2fc61a48dfdd89e08a6652e252744761
User & Date: mistachkin 2014-08-02 17:42:45.689
Context
2014-08-03
00:14
Merge updates from trunk. check-in: 938efc64e5 user: mistachkin tags: designOptions
2014-08-02
17:42
Merge updates from trunk. check-in: d649417b2f user: mistachkin tags: designOptions
17:33
Update documentation comments for the DefaultDbType and DefaultTypeName properties. check-in: f4af7db4f1 user: mistachkin tags: trunk
07:42
Merge updates from trunk. check-in: 398e29fcc6 user: mistachkin tags: designOptions
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteConnection.cs.
2594
2595
2596
2597
2598
2599
2600
2601

2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612


2613
2614
2615
2616
2617
2618
2619
2620
2594
2595
2596
2597
2598
2599
2600

2601

2602
2603
2604
2605
2606
2607
2608
2609


2610
2611

2612
2613
2614
2615
2616
2617
2618







-
+
-








-
-
+
+
-







    {
      get { CheckDisposed(); return _flags; }
      set { CheckDisposed(); _flags = value; }
    }

    /// <summary>
    /// Gets/sets the default database type for this connection.  This value
    /// will only be used if the <see cref="SQLiteConnectionFlags.UseConnectionTypes" />
    /// will only be used when not null.
    /// flag is set.
    /// </summary>
    public DbType? DefaultDbType
    {
      get { CheckDisposed(); return _defaultDbType; }
      set { CheckDisposed(); _defaultDbType = value; }
    }

    /// <summary>
    /// Gets/sets the default database type name for this connection.  This value
    /// will only be used if the <see cref="SQLiteConnectionFlags.UseConnectionTypes" />
    /// Gets/sets the default database type name for this connection.  This
    /// value will only be used when not null.
    /// flag is set.
    /// </summary>
    public string DefaultTypeName
    {
      get { CheckDisposed(); return _defaultTypeName; }
      set { CheckDisposed(); _defaultTypeName = value; }
    }