System.Data.SQLite

Check-in [528007e621]
Login

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

Overview
Comment:Improve coding style in the CountParents method.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | nextRelease
Files: files | file ages | folders
SHA1: 528007e6213ed5ce8b435ed54f7acbe2cfd8422b
User & Date: mistachkin 2015-03-04 19:42:01.012
Context
2015-03-04
19:48
Update release date for 1.0.96.0. check-in: 80b6dda010 user: mistachkin tags: nextRelease
19:42
Improve coding style in the CountParents method. check-in: 528007e621 user: mistachkin tags: nextRelease
2015-03-03
03:15
Update Eagle script library in externals to the latest trunk code. check-in: 12a71d6811 user: mistachkin tags: nextRelease
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteDataReader.cs.
916
917
918
919
920
921
922


923
924
925
926
927
928
929
930
        if (parentToColumns != null)
        {
            foreach (ColumnParent key in parentToColumns.Keys)
            {
                if (key == null)
                    continue;



                if (String.IsNullOrEmpty(key.TableName))
                    continue;

                result++;
            }
        }

        return result;







>
>
|







916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
        if (parentToColumns != null)
        {
            foreach (ColumnParent key in parentToColumns.Keys)
            {
                if (key == null)
                    continue;

                string tableName = key.TableName;

                if (String.IsNullOrEmpty(tableName))
                    continue;

                result++;
            }
        }

        return result;