Click or drag to resize

IDatabaseExecuteThroughAdapter Method (String, String, Hashtable, ExecuteThroughAdapterAttrs)

Executes an insert, update or delete through IDbDataAdapter, Dataset, DataTable, DataRow

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
void ExecuteThroughAdapter(
	string tableName,
	string filter,
	Hashtable fieldValues,
	ExecuteThroughAdapterAttrs executeAttrs
)

Parameters

tableName
Type: SystemString
The table on which to execute the operation
filter
Type: SystemString
The filter to obtain the row for Delete or Update (null allowed for inserts)
fieldValues
Type: System.CollectionsHashtable
A collection of name value pairs defining the columns and values to set (null allowed for deletes)
executeAttrs
Type: NetQuarryExecuteThroughAdapterAttrs
Attributes indicating whether operation should be Insert, Update or Delete
See Also