A .NET wrapper to the SQLite database

SQLiteResultSet.Seek Method 

Moves the internal row pointer to the given index. Returns true/false as to whether it succeeded. (Fails if there aren't enough rows).

[Visual Basic]
Public Function Seek( _
   ByVal index As Integer _
) As Boolean
[C#]
public bool Seek(
   int index
);

Parameters

index
Index to seek to (zero based)

See Also

SQLiteResultSet Class | SQLite.NET Namespace