Execute an update transaction.

Namespace: BrightstarDB.Client
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
IJobInfo ExecuteTransaction(
	string storeName,
	UpdateTransactionData updateTransaction,
	bool waitForCompletion = true,
	string label = null
)
Visual Basic
Function ExecuteTransaction ( 
	storeName As String,
	updateTransaction As UpdateTransactionData,
	Optional waitForCompletion As Boolean = true,
	Optional label As String = Nothing
) As IJobInfo
Visual C++
IJobInfo^ ExecuteTransaction(
	String^ storeName, 
	UpdateTransactionData^ updateTransaction, 
	bool waitForCompletion = true, 
	String^ label = nullptr
)
F#
abstract ExecuteTransaction : 
        storeName : string * 
        updateTransaction : UpdateTransactionData * 
        ?waitForCompletion : bool * 
        ?label : string 
(* Defaults:
        let _waitForCompletion = defaultArg waitForCompletion true
        let _label = defaultArg label null
*)
-> IJobInfo 

Parameters

storeName
Type: System..::..String
The name of the store to modify
updateTransaction
Type: BrightstarDB.Client..::..UpdateTransactionData
The update transaction data
waitForCompletion (Optional)
Type: System..::..Boolean
If set to true the method will block until the transaction completes
label (Optional)
Type: System..::..String
Optional user-friendly label for the job.

Return Value

Type: IJobInfo
A IJobInfo instance for monitoring the status of the job

See Also