AddRecord (Recordset subroutine)

From m204wiki
Revision as of 13:40, 13 April 2015 by DCameron (talk | contribs) (→‎Example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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