moveTo( )

Moves the position of the current record in an AGDBSet object.

Interface

AGDBSet

IDL definition
boolean moveTo(unsigned long index);
JavaScript synopsis

dbset.moveTo(index)

C synopsis
PODSBoolean AVmoveTo(
  AGDBSet* dbset,
  PODSUInt32 index
);
Parameters
  • dbset   The AGDBSet object.

  • index   [in] Index of the row to move to.

Returns

TRUE on success; FALSE otherwise.

Remarks

Moves the position of the current record in an AGDBSet object. In ADO, this is accomplished by setting the AbsolutePosition property to the index you want to move to.

See also

index