IRowset.GetNextRows(Int32, Int32, Int32, Int32, Int32[]) Method

Definition

Fetches rows sequentially, remembering the previous position.

public:
 void GetNextRows(int hChapter, int lRowsOffset, int cRows, [Runtime::InteropServices::Out] int % cRowsObtained, [Runtime::InteropServices::Out] cli::array <int> ^ % hRows);
public void GetNextRows (int hChapter, int lRowsOffset, int cRows, out int cRowsObtained, out int[] hRows);
abstract member GetNextRows : int * int * int * int * Int32[] -> unit
Public Sub GetNextRows (hChapter As Integer, lRowsOffset As Integer, cRows As Integer, ByRef cRowsObtained As Integer, ByRef hRows As Integer())

Parameters

hChapter
Int32

The chapter handle designating the rows to fetch.

lRowsOffset
Int32

The signed count of rows to skip before fetching rows. Deleted rows that the provider has removed from the rowset are not counted in the skip.

cRows
Int32

The number of rows to fetch. A negative number means to fetch backward.

cRowsObtained
Int32

A pointer to memory in which to return the actual number of fetched rows.

hRows
Int32[]

A pointer to memory in which to return an array of handles of the fetched rows.

Remarks

Note

Functions and objects in the Microsoft.VisualBasic.Compatibility.VB6 namespace are provided for use by the tools for upgrading from Visual Basic 6.0 to Visual Basic 2008. In most cases, these functions and objects duplicate functionality that you can find in other namespaces in the .NET Framework. They are necessary only when the Visual Basic 6.0 code model differs significantly from the .NET Framework implementation.

Applies to