AddRecord (Recordset subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
 
(3 intermediate revisions by 3 users not shown)
Line 23: Line 23:
must be greater than or equal to the lock strength of the record set being added to.
must be greater than or equal to the lock strength of the record set being added to.


Consequently, <var>AddRecord</var> does not require any new locks &amp;amp;mdash;
Consequently, <var>AddRecord</var> does not require any new locks &mdash;
the record being added must already be locked at an equal
the record being added must already be locked at an equal
or greater strength than the target.
or greater strength than the target.
Line 52: Line 52:
       %overPaid:addRecord(currentRecord)
       %overPaid:addRecord(currentRecord)
     end if
     end if
  end find
  end for
</p>
</p>
With version 6.8 of <var class="product">Sirius Mods</var> and earlier, you must specify the
With version 6.8 of <var class="product">Sirius Mods</var> and earlier, you must specify the
class name or an object variable before the <var>CurrentRecord</var> method name; for example:
class name or an object variable before the <var>CurrentRecord</var> method name; for example:
<p class="code">       %overPaid:addRecord( -
<p class="code">%overPaid:addRecord( %(Record in File customers):currentRecord )
          %(Record in File customers):currentRecord)
</p>
</p>
==See also==
==See also==
<ul>
<ul>

Latest revision as of 13:40, 13 April 2015

Add Record object record to a Recordset (Recordset class)


AddRecord adds the record in a Record object to the records in an existing Recordset object. It provides functionality identical to the User Language Place Record statement, but it does so for Recordset objects.

Syntax

recordset:AddRecord( record)

Syntax terms

recordset A non-null Recordset object variable.
record A non-null Record object, which must have the same file context as recordset.

Usage notes

  • The lock strength of the Record object being added to the method object must be greater than or equal to the lock strength of the record set being added to. Consequently, AddRecord does not require any new locks — the record being added must already be locked at an equal or greater strength than the target. Therefore, this method will never cause a record locking conflict. Within a Recordset, all records are always locked at the same strength (the lock strength with which the object was created). In summary, these locking rules are in effect. Any violation of them results in request cancellation.
    • To a Recordset locked at exclusive level, you may add only a record that is locked at exclusive level.
    • To a Recordset locked at share level, you may add a record locked at exclusive level or share level.
    • To an unlocked Recordset you may add a record locked at any strength (exclusive, share, none).
  • If the Record object parameter of AddRecord is null, the request is cancelled.

Example

In the following example, the records where field Paid is greater than field Charges are placed on a Recordset:

%overPaid is object recordSet in file customers %overpaid = new(share) for each record in file customers if paid gt charges then %overPaid:addRecord(currentRecord) end if end for

With version 6.8 of Sirius Mods and earlier, you must specify the class name or an object variable before the CurrentRecord method name; for example:

%overPaid:addRecord( %(Record in File customers):currentRecord )

See also