GeoEco.Datasets.InsertCursor.InsertRow
- InsertCursor.InsertRow()
Submits the new row to the underlying data store.
If you do not explicitly set values of all of the new row’s fields by calling
SetValue()prior to callingInsertRow(), those fields will be set to database NULL (if they are not read-only). If a field that has not been set is not nullable,InsertRow()will report an error. To determine if a field is nullable, callGetFieldByName()on theTableand examine theIsNullableproperty of the returnedFieldinstance.Certain storage formats may implement a transactional updating scheme in which changes 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
Tableyou are working with.