dotConnect for Oracle Documentation
Devart.Common Namespace / DbDataAdapter Class / FillPage Method
A DataTable to fill.
Ordinal of row that result set starts with.
Quantity of rows to fill.

In This Topic
    FillPage Method (DbDataAdapter)
    In This Topic
    Fills associated DataSet with specified range of rows.
    Syntax
    'Declaration
     
    Public Function FillPage( _
       ByVal dataTable As DataTable, _
       ByVal startRecord As Integer, _
       ByVal maxRecords As Integer _
    ) As Integer
    public int FillPage( 
       DataTable dataTable,
       int startRecord,
       int maxRecords
    )

    Parameters

    dataTable
    A DataTable to fill.
    startRecord
    Ordinal of row that result set starts with.
    maxRecords
    Quantity of rows to fill.

    Return Value

    Number of rows filled.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also