nRecords | (Long) The number of records that the current record position moves.
Greater than zero means forward and negative number means backward. |
---|---|
vStart | [optional] (Variant) Specifies the starting position (Bookmark).
If not set, then the starting position will be the position of the current record. If a valid Bookmark is defined, then it will be used as starting position. It is also possible to use standard numeric constants for specifying the start position: 0 (default) - (adBookmarkCurrent) Current record.
1 - (adBookmarkFirst) First record.
2 - (adBookmarkLast) Last record. |
var oDb = pMe.Pm("/TestAdoDb");
var oRs = oDb.RsOpen("table1", "SELECT * FROM table1", "cursor:static;");
if (oRs)
{
oRs.MoveFirst();
while (! oRs.EOF)
{
Pm.Debug("Field=" + oRs.Fields.Item(0).Value);
oRs.Move(10);
}
}