DbDataAdapter::Fill Method

 

Fills a DataSet or a DataTable.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

NameDescription
System_CAPS_pubmethodFill(DataSet^)

Adds or refreshes rows in the DataSet.(Overrides DataAdapter::Fill(DataSet^).)

System_CAPS_pubmethodFill(DataSet^, Int32, Int32, String^)

Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet and DataTable names.

System_CAPS_protmethodFill(DataSet^, Int32, Int32, String^, IDbCommand^, CommandBehavior)

Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet and source table names, command string, and command behavior.

System_CAPS_pubmethodFill(DataSet^, String^)

Adds or refreshes rows in the DataSet to match those in the data source using the DataSet and DataTable names.

System_CAPS_protmethodFill(DataSet^, String^, IDataReader^, Int32, Int32)

Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet and DataTable names.(Inherited from DataAdapter.)

System_CAPS_pubmethodFill(DataTable^)

Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataTable name.

System_CAPS_protmethodFill(DataTable^, IDataReader^)

Adds or refreshes rows in the DataTable to match those in the data source using the DataTable name and the specified IDataReader.(Inherited from DataAdapter.)

System_CAPS_protmethodFill(DataTable^, IDbCommand^, CommandBehavior)

Adds or refreshes rows in a DataTable to match those in the data source using the specified DataTable, IDbCommand and CommandBehavior.

System_CAPS_protmethodFill(array<DataTable^>^, IDataReader^, Int32, Int32)

Adds or refreshes rows in a specified range in the collection of DataTable objects to match those in the data source.(Inherited from DataAdapter.)

System_CAPS_protmethodFill(array<DataTable^>^, Int32, Int32, IDbCommand^, CommandBehavior)

Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet and DataTable names.

System_CAPS_pubmethodFill(Int32, Int32, array<DataTable^>^)

Adds or refreshes rows in a DataTable to match those in the data source starting at the specified record and retrieving up to the specified maximum number of records.

Return to top
Show: