System.Data.SQLite

Check-in [9d878e2c01]
Login

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

Overview
Comment:Removed unnecessary catch
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: 9d878e2c0119fea4cc6f041a6ddd41c9d4f6778e
User & Date: rmsimpson 2005-03-04 23:09:42.000
Context
2005-03-05
19:11
1.07 commit check-in: 8c09418479 user: rmsimpson tags: sourceforge
2005-03-04
23:09
Removed unnecessary catch check-in: 9d878e2c01 user: rmsimpson tags: sourceforge
21:32
Latest build check-in: 972b7cde17 user: rmsimpson tags: sourceforge
Changes
Unified Diff Show Whitespace Changes Patch
Changes to System.Data.SQLite/SQLiteDataReader.cs.
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
                }
              }
              tbl.Rows.Add(row);
            }
          }
        }
      }
      catch (Exception e)
      {
        throw (e);
      }
      finally
      {
        cnn._sql.SetRealColNames(false);
      }

      tbl.AcceptChanges();
      tbl.EndLoadData();







<
<
<
<







530
531
532
533
534
535
536




537
538
539
540
541
542
543
                }
              }
              tbl.Rows.Add(row);
            }
          }
        }
      }




      finally
      {
        cnn._sql.SetRealColNames(false);
      }

      tbl.AcceptChanges();
      tbl.EndLoadData();