DbDataAdapter.Fill Method
.NET Framework 2.0
Fills a DataSet or a DataTable.
| Name | Description |
|---|---|
| DbDataAdapter.Fill (DataSet) | Adds or refreshes rows in the DataSet to match those in the data source using the DataSet name, and creates a DataTable named "Table." Supported by the .NET Compact Framework. |
| DbDataAdapter.Fill (DataTable) | Adds or refreshes rows in a specified range in the DataSet to match those in the data source using the DataSet, DataTable, and IDataReader names. Supported by the .NET Compact Framework. |
| DbDataAdapter.Fill (DataSet, String) | Adds or refreshes rows in the DataSet to match those in the data source using the DataSet and DataTable names. Supported by the .NET Compact Framework. |
| DbDataAdapter.Fill (DataTable, IDataReader) | Adds or refreshes rows in the DataSet to match those in the data source using the DataSet name, and creates a DataTable. |
| DbDataAdapter.Fill (DataTable, IDbCommand, CommandBehavior) | Adds or refreshes rows in a DataTable to match those in the data source using the specified DataTable and IDataReader names. Supported by the .NET Compact Framework. |
| DbDataAdapter.Fill (Int32, Int32, DataTable[]) | Adds or refreshes rows in a DataTable to match those in the data source using the DataTable name, the specified SQL SELECT statement, and CommandBehavior. Supported by the .NET Compact Framework. |
| DbDataAdapter.Fill (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. Supported by the .NET Compact Framework. |
| DbDataAdapter.Fill (DataTable[], IDataReader, Int32, Int32) | Adds or refreshes rows in the DataSet to match those in the data source using the DataSet name, and creates a DataTable. |
| DbDataAdapter.Fill (DataSet, String, IDataReader, Int32, Int32) | Adds or refreshes rows in the DataSet to match those in the data source using the DataSet name, and creates a DataTable. |
| DbDataAdapter.Fill (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. Supported by the .NET Compact Framework. |
| DbDataAdapter.Fill (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. Supported by the .NET Compact Framework. |