hasLocalEdits method

bool hasLocalEdits()

True if the geodatabase has local edits, false otherwise.

If the geodatabase was created by ArcGIS Pro, this method returns false because there is no concept of uploading or applying edits. If you want to determine which tables have local edits, examine GeodatabaseFeatureTable.hasLocalEditsSince.

Return Value: true if it has local edits, false otherwise.

Implementation

bool hasLocalEdits() {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Geodatabase_hasLocalEdits(_handle, errorHandler);
  });
}