moveNext( )

Moves the current record position one record forward (toward the bottom of the AGDBSet object).

Interface

AGDBSet

IDL definition
boolean moveNext( );
ADO equivalent

moveNext method

JavaScript synopsis

dbset.moveNext( )

C synopsis
PODSBoolean AVmoveNext(AGDBSet* dbset);
Parameters
  • dbset   The AGDBSet object.

Returns

TRUE on success; FALSE otherwise.

Remarks

If the last record is the current record and you call the moveNext method, the AGDBSet interface sets the current record to the position after the last record in the AGDBSet object, where ateof( ) is TRUE.

See also

ateof( ), movePrev( )