Use in conjunction with GetRow() or GetRowHash() to determine if there is more data left to be retrieved.
Eg.
while (results.IsMoreData()) {
ArrayList row = results.GetRow();
// Do something with the row data...
}
SQLiteResultSet Class | SQLite.NET Namespace