lrc_FetchRecordset
| ADO Recordset Functions |
Moves a pointer through a recordset.
void lrc_FetchRecordset( recordset15* recordset, int steps );
| recordset | A recordset. |
| steps | The number of steps to move. Use negative values to go backwards. |
The lrc_FetchRecordset function moves the pointer to the current record, forward or backward within the recordset.
Return Values
Parameterization
Parameterization is not applicable to this function.
Example
This example moves the pointer five records forward within the recordset:
lrc_FetchRecordset((Recordset15*)Recordset20_0, 5);

