AndRecordsetNew (Recordset function): Difference between revisions
m (→See also) |
m (→Usage notes) |
||
Line 32: | Line 32: | ||
<var>[[AddRecordsetNew (Recordset function)|AddRecordsetNew]]</var> can be thought of | <var>[[AddRecordsetNew (Recordset function)|AddRecordsetNew]]</var> can be thought of | ||
as an OR; and <var>[[RemoveRecordsetNew (Recordset function)|RemoveRecordsetNew]]</var> | as an OR; and <var>[[RemoveRecordsetNew (Recordset function)|RemoveRecordsetNew]]</var> | ||
as | as subtraction. | ||
No basic method is the analog of an exclusive OR operation, but | No basic method is the analog of an exclusive OR operation, but | ||
you can use the basic methods to achieve an exclusive OR, as shown | you can use the basic methods to achieve an exclusive OR, as shown |
Revision as of 19:40, 7 February 2012
Create new Recordset from intersection of two Recordsets (Recordset class)
AndRecordsetNew “ANDs” a Recordset object's records with the records in an
another Recordset object and produces a new Recordset object that contains the
records in both Recordsets.
It does the same processing as AndRecordset,
but it produces a new output Recordset and leaves the two input Recordsets unmodified.
Syntax
%outRecordset = recordset:AndRecordsetNew( recordset2)
Syntax terms
%target | The Recordset object variable created by this method. |
---|---|
%rs | A non-null Recordset object, which must have the same file context as %target. |
recordsetObject | A non-null Recordset object, which must have the same file context as %target. |
Usage notes
- The AndRecordsetNew method is only available in Sirius Mods 7.1 and later.
- The LockStrength and LoopLockStrength of the output Recordset object is the same as that of the method object (%rs).
- If the Recordset object argument of AndRecordsetNew is null, the request is cancelled.
- Since AndRecordsetNew never adds records to a Recordset, there are no lock strength requirements for either the method or input object.
- The AndRecordsetNew method can be thought of as a Recordset AND operation; AddRecordsetNew can be thought of as an OR; and RemoveRecordsetNew as subtraction. No basic method is the analog of an exclusive OR operation, but you can use the basic methods to achieve an exclusive OR, as shown in "RemoveRecordsetNew Examples".
Example
In the following example, the result of one Find is used to limit the result of another Find. Of course, identical processing could be better done with an And in a Find statement.
%review is object recordSet in file orders %bigCust is object recordSet in file orders %bigReview is object recordSet in file orders find records to %review status = 'REVIEW' end find find records to %bigCust company ='TOXICO' end find %bigReview = %review:andRecordsetNew(%bigCust)