System.Data.SQLite

Check-in [9b51e7a273]
Login

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

Overview
Comment:Coding style adjustment.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | tkt-5251bd0878
Files: files | file ages | folders
SHA1: 9b51e7a27353e6bb112886971c125946aca9e9a1
User & Date: mistachkin 2015-12-12 02:02:34.606
Context
2015-12-15
01:40
Modify the test case. Closed-Leaf check-in: e21840949d user: mistachkin tags: tkt-5251bd0878
2015-12-12
02:02
Coding style adjustment. check-in: 9b51e7a273 user: mistachkin tags: tkt-5251bd0878
01:59
Revise fix for [5251bd0878] to use null for the 'COLUMN_NAME' if the original value was DBNull.Value. check-in: f8c2007d48 user: mistachkin tags: tkt-5251bd0878
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteConvert.cs.
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
    {
        if (value == null)
            return null;

        if (value is string)
            return (string)value;

        if (Object.ReferenceEquals(value, DBNull.Value))
            return null;

        return value.ToString();
    }

    /// <summary>
    /// Determines if the specified textual value appears to be a







|







1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
    {
        if (value == null)
            return null;

        if (value is string)
            return (string)value;

        if (value == DBNull.Value)
            return null;

        return value.ToString();
    }

    /// <summary>
    /// Determines if the specified textual value appears to be a