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 was 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.
In other libraries you can call
SQLiteDataReader.HasRowsbefore callingSQLiteDataReader.Read()It does not have many sense for
.HasRowsrequiring.Read()to be called first, becauseRead()returns true if there are rows in the query result, therefore you don't need to call.HasRowsat all.