Indicates whether the rows that are selected are locked for reading and updating. Equivalent to Serialiazable isolation level. These rows cannot be read or updated until the lock is released. Locks are released when the transaction has been committed or rolled back.

Namespace: DatabaseObjects.SQL
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
public bool PerformLocking { get; set; }
Visual Basic
Public Property PerformLocking As Boolean
	Get
	Set
Visual C++
public:
property bool PerformLocking {
	bool get ();
	void set (bool value);
}

See Also