System.Data.SQLite

Check-in [aa5229db4e]
Login

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

Overview
Comment:Re-fix HasRows
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | sourceforge
Files: files | file ages | folders
SHA1: aa5229db4e9e9854c268db4257f3548e0de9ab50
User & Date: rmsimpson 2005-12-20 14:43:45.000
Context
2005-12-22
17:21
Document support for Visual Web Developer Express Edition check-in: bd127c49e5 user: rmsimpson tags: sourceforge
2005-12-20
14:43
Re-fix HasRows check-in: aa5229db4e user: rmsimpson tags: sourceforge
2005-12-19
20:46
Fix typo check-in: 3df863ce6e user: rmsimpson tags: sourceforge
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteDataReader.cs.
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
    /// Returns True if the resultset has rows that can be fetched
    /// </summary>
    public override bool HasRows
    {
      get
      {
        CheckClosed();
        return (_readingState < 2);
      }
    }

    /// <summary>
    /// Returns True if the data reader is closed
    /// </summary>
    public override bool IsClosed







|







623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
    /// Returns True if the resultset has rows that can be fetched
    /// </summary>
    public override bool HasRows
    {
      get
      {
        CheckClosed();
        return (_readingState != 1);
      }
    }

    /// <summary>
    /// Returns True if the data reader is closed
    /// </summary>
    public override bool IsClosed