This repository was archived by the owner on Jul 15, 2024. It is now read-only.

Description
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.