Microsoft SDK for Java

move

The move method of the Recordset class moves the position of the current record in a Recordset object. move has the following signatures:

move(int numRecords)
move(int numRecords, Object bmkStart)

move(int numRecords)

Moves the position of the current record in a Recordset object.

Syntax

public void move(int numRecords);

Parameters

numRecords An integer specifying the number of records the current record position moves.

move(int numRecords, Object bmkStart)

Moves the position of the current record in a Recordset object.

Syntax

public void move(int numRecords, Object bmkStart);

Parameters

numRecords An integer specifying the number of records the current record position moves.
bmkStart A string or Variant that evaluates to a bookmark. You can also use an AdoEnums.Bookmark value.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.