You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.
In other libraries you can call SQLiteDataReader.HasRows before calling SQLiteDataReader.Read()
It does not have many sense for .HasRows requiring .Read() to be called first, because Read() returns true if there are rows in the query result, therefore you don't need to call .HasRows at all.
The text was updated successfully, but these errors were encountered:
daniol
changed the title
.HasRows hast to be called after .Read()
.HasRows has to be called after .Read()
Oct 9, 2020
In other libraries you can call
SQLiteDataReader.HasRows
before callingSQLiteDataReader.Read()
It does not have many sense for
.HasRows
requiring.Read()
to be called first, becauseRead()
returns true if there are rows in the query result, therefore you don't need to call.HasRows
at all.The text was updated successfully, but these errors were encountered: