LockStrength (Recordset function)

From m204wiki
Revision as of 23:07, 22 February 2012 by JAL2 (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Return lock strength of Recordset (Recordset class)


This non-settable property returns a LockStrength enumeration that indicates the locking of the Recordset object.

Syntax

%lockStrength = recordset:LockStrength

Syntax terms

%lockStrength An enumeration object of type LockStrength, reflecting recordset's locking. The enumeration values (shared properties) that may be returned (None, Share, or Exclusive), correspond to standard Model 204 record-locking levels, as described for the New constructor.
recordset An instantiated Recordset object variable.

Usage notes

  • If the returned locking value is assigned to an enumeration variable, use the ToString enumeration method to print the value string.

See also