Quote Originally Posted by Eduardo- View Post
It would be nice to test it.
I'm on it. The new SQLiteCursor will be createable from the SQLiteConnection or from an SQLiteCommand object.
So, the cursor class is focused only on iterating the values. It will support only "MoveFirst" and "MoveNext". The MoveFirst will simply reset everything.
The RecordCount of that cursor is on the first run equal to the position. But it will remain the same after a possible "second" round. (MoveFirst)

It's not possible to determine RecordCount upfront. So that's my solution.
I need to make more tests.. Will provide it soon.