Property | Accessor | Description |
AcceptChangesDuringFill | get set | A true/false value indicating whether the DataRow.AcceptChanges method is called after the DataRow is added to the DataTable. Inherited from DataAdapter. Default is true. |
ContinueUpdateOnError | get set | A true/false value indicating whether to generate an exception or to update the RowError property when an error occurs during an update to the row. Inherited from DataAdapter. Default is false. |
DeleteCommand | get set | Command to be used (SQL statement or database procedure) to DELETE records from the database. |
InsertCommand | get set | Command to be used (SQL statement or database procedure) to INSERT records into the database. |
MissingMappingAction | get set | Action to be taken if incoming data does not have a matching table or column. Default is Passthrough. Inherited from DataAdapter. |
MissingSchemaAction | get set | Action to be taken if an existing DataSet schema does not match incoming data. Inherited from DataAdapter. Default is Add. |
SelectCommand | get set | Command to be used (SQL statement or database procedure) to SELECT records from the database. |
TableMappings | get | The collection that provides the mapping between the returned records and the DataSet. Inherited from DataAdapter. Default is an empty collection. |
UpdateBatchSize | get set | Enables or disables batch processing support (see
Batch Statement Execution) and specifies the number of commands that can be executed in a batch. Inherited from DbDataAdapter. Default is 1 (batch is disabled). |
UpdateCommand | get set | Command to be used (SQL statement or database procedure) to UPDATE records in the database. |