GeoEco.Datasets.UpdateCursor.UpdateRow

UpdateCursor.UpdateRow()

Submits any changes made to the current row to the underlying data store.

You cannot access a row after calling UpdateRow(); GetValue(), SetValue(), and so on will not work. You cannot delete it. You must call NextRow() to advance the cursor to the next row.

Certain storage formats may implement a transactional updating scheme in which the change will not be committed to the underlying data store until the cursor has been closed. For more information, please see the documentation for the particular kind of Table you are working with.