System.Data.SQLite

Check-in [9dcd74d93e]
Login

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

Overview
Comment:Fix typo in previous check-in.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9dcd74d93e533c540c4ed87bd875b4d07f1daa17
User & Date: mistachkin 2014-05-30 21:54:55.998
Context
2014-05-30
23:25
Add DetectTextAffinity and DetectStringType connection flags to enable automatic detection of column types, when necessary. Pursuant to [3c00ec5b52]. check-in: 58e932f761 user: mistachkin tags: trunk
21:54
Fix typo in previous check-in. check-in: 9dcd74d93e user: mistachkin tags: trunk
21:53
Add SharedFlags static property to the SQLiteConnection class. Make the display names for connection string properties more consistent. check-in: e4b0d17481 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteConnectionStringBuilder.cs.
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
    }

    /// <summary>
    /// If enabled, skip using the configured shared connection flags.
    /// </summary>
    [DisplayName("No Shared Flags")]
    [Browsable(true)]
    [DefaultValue(true)]
    public bool NoSharedFlags
    {
        get
        {
            object value;
            TryGetValue("nosharedflags", out value);
            return SQLiteConvert.ToBoolean(value);







|







738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
    }

    /// <summary>
    /// If enabled, skip using the configured shared connection flags.
    /// </summary>
    [DisplayName("No Shared Flags")]
    [Browsable(true)]
    [DefaultValue(false)]
    public bool NoSharedFlags
    {
        get
        {
            object value;
            TryGetValue("nosharedflags", out value);
            return SQLiteConvert.ToBoolean(value);