Copy and DeepCopy (Record functions)

From m204wiki
Revision as of 20:50, 15 April 2011 by JAL2 (talk | contribs) (Created page with "{{Template:Recordset:DeepCopy subtitle}} <var>DeepCopy</var> is a function that returns an exact copy of the method <var>Recordset</var> object. It is identical to the <var>Reco...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Deep copy this Recordset object (Recordset class)


DeepCopy is a function that returns an exact copy of the method Recordset object. It is identical to the Recordset Copy method. Recordset objects are always copyable and "deep-copyable" (as these terms are described in "The Object class copy methods").

Syntax

%outRecordset = recordset:DeepCopy[( [lockStrength], - [LoopLockStrength= lockStrength])]

Syntax terms

%newSet A Recordset object created by this method that contains a copy of the method object.
%recSet A Recordset object variable. The variable can be null, in which case the output object will also be null.
lockstrength A value of the LockStrength enumeration that is the lock strength to give to the instantiated Recordset object. Options are: None, Share, or Exclusive, as described in "New (Recordset constructor)". This is an optional parameter, and it defaults to the lock strength of the method object. Specifying a stronger LockStrength than the method object's lock strength is invalid and results in request cancellation.
LoopLockStrength The lock strength to be used for loops on the copied Recordset. This is an optional, name required, parameter, and it defaults to the LoopLockStrength of the method object Recordset. This parameter is only available in Sirius Mods 7.0 and later. See "LoopLockStrength for Recordsets".

Usage notes

  • You can only create a copy of lock strength less than or equal to the original, so Copy needs to acquire no locks that the user does not already hold. Therefore, Copy cannot produce a record locking conflict.
  • Specifying a lock strength greater than the lock strength of the method object is a request-cancelling error.

Example

In the following example, a base record set is created, copied, then added to:

begin %baseStooges is object recordset in file glwproc %copyStooges is object recordset in file glwproc %curleyStooge is object recordset in file glwproc fd to %baseStooges name = 'MOE' or name = 'LARRY' end find text ------ The names of the %baseStooges are: end text fr in %baseStooges text {name} end text end for %copyStooges = %baseStooges:copy fd to %curleyStooge with name = 'CURLEY' end find %copyStooges:addRecordset( %curleyStooge ) text ------ The names of the {%copyStooges:Count} %copyStooges are: end text fr in %copyStooges text {name} end text end for end

The example results follow:

------ The names of the %baseStooges are: MOE LARRY ------ The names of the 3 %copyStooges are: MOE LARRY CURLEY

See also