DataAccessExecuteUpdates Method (KeyedList, DataSet, Boolean) | 
 
            Updates the database with the given collection of adapters and the datatable contained into the given dataset
            
 
    Namespace: 
   WorkflowGen.My.Data
    Assembly:
   WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.7.2.0 (4.7.2.0)
Syntaxpublic void ExecuteUpdates(
	KeyedList adapters,
	DataSet updatedData,
	bool useTransaction
)
Public Sub ExecuteUpdates ( 
	adapters As KeyedList,
	updatedData As DataSet,
	useTransaction As Boolean
)
Parameters
- adapters
 - Type: WorkflowGen.My.CollectionsKeyedList
A keyed collection of adapter to use during update - updatedData
 - Type: System.DataDataSet
A dataset which contains the updates - useTransaction
 - Type: SystemBoolean
Determines whether or not to begin a transaction 
Remarks
            If a global transaction is active for the current instance, the parameter useTransaction is 
            ignored and the actions are performed in the scope of the global transaction
            
See Also