This document is archived and information here might be outdated. Recommended version. |
Returns the object identifier or difference row.
[Visual Basic .NET] Public Sub Next ( _ ByRef OID As Integer, _ ByRef differenceRow As IRow _ )
[C#] public void Next ( ref int OID, ref IRow differenceRow );
[C++]
HRESULT Next(
System.Int32* OID,
IRow** differenceRow
);
[C++] Parameters OID [out]
OID is a parameter of type long* differenceRow [out]
differenceRow is a parameter of type IRow**
The Next method returns an object ID of an IRow.
IRow objects returned from a difference cursor are meant to be a read only. If row editing is desired the OID returned from the call to IDifferenceCursor::NextRow should be used in a call ITable::GetRow or ITable::GetRows methods.