GeoEco.Datasets.SelectCursor.NextRow
- SelectCursor.NextRow()
Advances the cursor to the next row.
- Returns:
True if a row is available. False if no more rows are available.
After opening the cursor, you must call
NextRow()prior to accessing the first row, and call it again prior to accessing each subsequent row. OnceNextRow()returns False, no more rows are available, row-access functions such asGetValue()will fail, the cursor is automatically closed, andIsOpenwill be False.If
NextRow()has not been called yet, or the last time it was called it returned True,AtEndwill be False. OnceNextRow()returns False,AtEndwill be True.- Return type: