Re: [sqlite] SQLiteDataReader has already read all rows in first result set

2019-07-15 Thread Guy St-Denis
- 2 2 2 PS D:\temp> $dataReader.HasRows False -- Guy St-Denis ‐‐‐ Original Message ‐‐‐ On Monday, July 15, 2019 12:34 PM, Guy St-Denis wrote: > New SQLite user... trying to understand the following issue. > (Spent several hours on Google, Stack Overflow

[sqlite] SQLiteDataReader has already read all rows in first result set

2019-07-15 Thread Guy St-Denis
$dataReader.HasRows True PS D:\temp> $dataReader.Read() True PS D:\temp> $dataReader.GetValue(0) 301 PS D:\temp> $dataReader.GetValue(1) 302 PS D:\temp> $dataReader.Read() False PS D:\temp> $dataReader.HasRows False PS D:\temp> $dataReader.GetValue(0) Exception calling "GetValue" wi