System.Data.SQLite

Check-in [897a253ad0]
Login

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

Overview
Comment:Fixed the incomplete Catalogs schema
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: 897a253ad0a52ca0230cb3fe2d6c50d28fabaa11
User & Date: rmsimpson 2005-11-22 14:54:15.000
Context
2005-11-30
18:04
Fixed a bug that failed to throw an exception if there wasn't a current row and a function was called to read data from the current row check-in: a6a79f6c79 user: rmsimpson tags: sourceforge
2005-11-22
14:54
Fixed the incomplete Catalogs schema check-in: 897a253ad0 user: rmsimpson tags: sourceforge
14:53
no message check-in: bd09265a2c user: rmsimpson tags: sourceforge
Changes
Side-by-Side Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteConnection.cs.
1185
1186
1187
1188
1189
1190
1191

1192
1193
1194
1195
1196
1197
1198
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199







+







          {
            if (String.Compare(rd.GetString(1), strCatalog, true, CultureInfo.InvariantCulture) == 0
              || strCatalog == null)
            {
              row = tbl.NewRow();

              row["CATALOG_NAME"] = rd.GetString(1);
              row["DESCRIPTION"] = rd.GetString(2);

              tbl.Rows.Add(row);
            }
          }
        }
      }