A .NET wrapper to the SQLite database

SQLiteResultSet.IsMoreData Property

Use in conjunction with GetRow() or GetRowHash() to determine if there is more data left to be retrieved.

[Visual Basic]
Public ReadOnly Property IsMoreData As Boolean
[C#]
public bool IsMoreData {get;}

Remarks

Eg.

            while (results.IsMoreData()) {
            	ArrayList row = results.GetRow();
            	
            	// Do something with the row data...
            }
            

See Also

SQLiteResultSet Class | SQLite.NET Namespace