LockStrength (Recordset function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
 
Line 1: Line 1:
{{Template:Recordset:LockStrength subtitle}}
{{Template:Recordset:LockStrength subtitle}}


This non-settable property returns a
This non-settable property returns a <var>LockStrength</var> [[Enumerations|enumeration]]
<var>LockStrength</var> enumeration
that indicates the locking of the <var>Recordset</var> object.
that indicates the locking of the <var>Recordset</var> object.
==Syntax==
==Syntax==
{{Template:Recordset:LockStrength syntax}}
{{Template:Recordset:LockStrength syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%lockStrength</th>
<tr><th>%lockStrength</th>
<td>The result is an enumeration object of type <var>LockStrength</var>, reflecting <var class="term">recordset</var>'s locking. The enumeration values (shared properties) that may be returned (<var>None</var>, <var>Share</var>, or <var>Exclusive</var>), correspond to standard <var class="product">Model 204</var> record-locking levels, as described in [[New (Recordset constructor)|"New (Recordset constructor)"]].
<td>An enumeration object of type <var>LockStrength</var>, reflecting <var class="term">recordset</var>'s locking. The enumeration values (shared properties) that may be returned (<var>None</var>, <var>Share</var>, or <var>Exclusive</var>), correspond to standard <var class="product">Model 204</var> record-locking levels, as described for the <var>[[New (Recordset constructor)|New]]</var> constructor.
</td></tr>
</td></tr>
<tr><th>recordset</th>
<tr><th>recordset</th>
Line 15: Line 16:


</td></tr></table>
</td></tr></table>
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>If the returned locking value is assigned to an enumeration variable,
<li>If the returned locking value is assigned to an enumeration variable,
use the <var>[[ToString]]</var> enumeration method to print the value string.
use the <var>[[Enumerations#ToString_property|ToString]]</var> enumeration method to print the value string.
<li>For more information about enumerations, see [[Enumerations]].
</ul>
</ul>
==See also==
==See also==
<ul>
<ul>
<li><var>[[LoopLockStrength (Recordset property)|LoopLockStrength]]</var>
<li><var>[[LoopLockStrength (Recordset property)|LoopLockStrength]]</var>
</ul>
</ul>
{{Template:Recordset:LockStrength footer}}
{{Template:Recordset:LockStrength footer}}

Latest revision as of 23:07, 22 February 2012

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