[GIS] Editing ArcSDE table with ArcObjects

arcobjectseditingenterprise-geodatabase

The link below provides a code snippet for editing an ArcSDE table with ArcObjects.

Are there any other or newer code examples out there of how to edit an ArcSDE table by using ArcObjects?

Edit SDE geodatabase table w/ ArcObjects

Best Answer

Here's a few to get you started:

Start Here - Learning ArcObjects

Connecting to a GeoDatabase

Creating and Modifying Schema

Versioning

Editing Data

And in specific you can look at Creating Features and Updating Features. Both of these will require you to connect to your GeoDatabase, which you can find samples for above.

Related Question