DB2ConnectionStringBuilder.ConcurrentAccessResolution property

Specifies the type of concurrent access resolution.

Namespace:
IBM.Data.DB2
Assembly:
IBM.Data.DB2 (in IBM.Data.DB2.dll)

Syntax


[Visual Basic]
Public Property ConcurrentAccessResolution As String
[C#]
public string ConcurrentAccessResolution {set;}
[C++]
public: __property void set_ConcurrentAccessResolution(String*);
[JScript]
public function set ConcurrentAccessResolution(String);

Property value

The ConcurrentAccessResolution property supports the following set of string values:

CurrentlyCommitted
Use the currently committed version of the data.
SkipLockedData
Skip rows in the case of record lock conflict.
WaitForOutcome
Wait for the commit or rollback action when encountering locked rows.

The database server defines the default behavior if the client does not provide a ConcurrentAccessResolution property value. If the application specifies the SkipLockedData value for the ConcurrentAccessResolution property for a server that does not support the SkipLockedData value, it is silently ignored, and the default behavior that is defined by the database server is used.

The SkipLockedData option is supported only with Db2® for z/OS® Version 10 and later servers.

For Db2 for IBM® i servers, use of the CurrentlyCommitted and WaitForOutcome values for the ConcurrentAccessResolution property is supported with Db2 for IBM i V7R1 and later servers.