Returns a cursor that can be used to update Rows selected by the specified query.
[Visual Basic 6.0] Function Update(
ByVal QueryFilter As IQueryFilter, _
ByVal Recycling As Boolean _
) As ICursor
[Visual Basic .NET] Public Function Update ( _ ByVal QueryFilter As IQueryFilter, _ ByVal Recycling As Boolean _ ) As ICursor
[C#] public ICursor Update ( IQueryFilter QueryFilter, bool Recycling );
[Java] public ICursor update ( IQueryFilter QueryFilter, Boolean Recycling ) throws IOException, AutomationException
[C++] HRESULT Update( IQueryFilter* QueryFilter, VARIANT_BOOL Recycling, ICursor** Cursor );
Parameters
QueryFilter [in]
QueryFilter is a parameter of type IQueryFilter
Recycling [in]
Recycling is a parameter of type VARIANT_BOOL
Cursor [out, retval]
Cursor is a parameter of type ICursor
The Update method returns an ‘update’ cursor that can be used to update or delete rows. It offers somewhat faster performance than multiple calls to Store or Delete on row objects fetched using a non-recycling search cursor for tables storing simple rows and simple features. There is no difference in performance for custom features.
All edits to features that participate in a Topology or Geometric Network must be bracketed within an edit operation.