DataAdapter::Fill Method (DataSet^, String^, IDataReader^, Int32, Int32)
.NET Framework (current version)
Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet and DataTable names.
Assembly: System.Data (in System.Data.dll)
protected: virtual int Fill( DataSet^ dataSet, String^ srcTable, IDataReader^ dataReader, int startRecord, int maxRecords )
Parameters
- dataSet
-
Type:
System.Data::DataSet^
A DataSet to fill with records.
- srcTable
-
Type:
System::String^
A string indicating the name of the source table.
- dataReader
-
Type:
System.Data::IDataReader^
An instance of IDataReader.
- startRecord
-
Type:
System::Int32
The zero-based index of the starting record.
- maxRecords
-
Type:
System::Int32
An integer indicating the maximum number of records.
Return Value
Type: System::Int32The number of rows successfully added to or refreshed in the DataSet. This does not include rows affected by statements that do not return rows.
See the remarks for System.Data.Common.DataAdapter.Fill(System.Data.DataSet) for additional information.
.NET Framework
Available since 2.0
Available since 2.0
Show: