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. |
Method | Description |
---|---|
Dispose | Releases allocated resources. |
Fill | Adds or refreshes rows in the DataSet to match the values in the database. Inherited from DBDataAdapter. |
FillSchema | Adds a DataTable to a DataSet and configures the schema to match that in the database. FillSchema does not add rows to a DataTable. Inherited from DBDataAdapter. |
GetFillParameters | Gets an array of IDataParameter objects that contain the parameters set by the user when executing a SELECT statement. Inherited from DBDataAdapter. |
Update | Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the DataSet. Inherited from DBDataAdapter. |
Event | Description |
---|---|
FillError | Raised when an error occurs during a Fill operation. Inherited from DBDataAdapter. |
RowUpdating | Raised as an UPDATE, INSERT, or DELETE operation on a row (by a call to one of the Update methods) is about to start. |
RowUpdated | Raised after an UPDATE, INSERT, or DELETE operation on a row (by a call to one of the Update methods) is complete. |
Constructor Overloads | Description |
---|---|
IngresDataAdapter() | Instantiates a new instance of the IngresDataAdapter class using default property values |
IngresDataAdapter (IngresCommand) | Instantiates a new instance of the IngresDataAdapter class using the defined IngresCommand as the SelectCommand. |
IngresDataAdapter (string, IngresConnection) | Instantiates a new instance of the IngresDataAdapter class using the defined command text for a new instance of IngresCommand for the SelectCommand, and the IngresConnection object |
IngresDataAdapter (string, string) | Instantiates a new instance of the IngresDataAdapter class using the defined command text for the SelectCommand and a connection string |