Retrieve records from a table cursor.
Namespace: NetricsServerInterface
Assembly: NetricsServerInterface (in NetricsServerInterface.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Function recnext( _ ByVal cursor As NetricsTableCursor _ ) As NetricsRecord() |
C# |
---|
public NetricsRecord[] recnext( NetricsTableCursor cursor ) |
C++ |
---|
public: array<NetricsRecord>^ recnext( NetricsTableCursor cursor ) sealed |
J# |
---|
public NetricsRecord[] recnext( NetricsTableCursor cursor ) |
JScript |
---|
public
function recnext( cursor : NetricsTableCursor ) : NetricsRecord[] |
Parameters
- cursor
- the cursor we are fetching from.
Return Value
An array of records representing the next batch of records from the cursor. If the cursor is at EOT null is returned. The number of records returned could be less than cursor.getBatchSize() if this is the last batch.
Remarks
This fetches the next batch of records from a table cursor, updating the cursor position.