Difference between revisions of "SET SKIP"

From Recital Documentation Wiki
Jump to: navigation, search
(Example)
Line 27: Line 27:
  
 
==Example==
 
==Example==
<pre>
+
<code>
 
select c
 
select c
 
use invoices index cust_code
 
use invoices index cust_code
Line 37: Line 37:
 
set skip on
 
set skip on
 
set relation to cust_code into invoices
 
set relation to cust_code into invoices
set skip to order, invoices</pre>
+
set skip to order, invoices</code>
 
+
  
 
==Products==
 
==Products==

Revision as of 05:48, 12 March 2009

SET SKIP

Class

Table Organization


Purpose

Automatically establishes one-to-many relationships across related tables


Syntax

SET SKIP TO [<alias>,[<alias>]...]

SET SKIP ON | OFF | (<expL>)


See Also

SET FILTER, SET RELATION


Description

The SET SKIP TO <alias> command allows for master to detail relationships between tables. It allows you to access all detail records in a related table. This command is only effective when SET RELATION is ON, and when a relationship exists between data files. The SET SKIP TO <alias> command operates by starting at the innermost relationship and scanning for all duplicate relationship keys to satisfy all detail records for the relationship. It then skips up a level in the relationship chain and performs the same operation on that data file. The record pointer in all specified related data files will update before the record pointer in the active data file is changed. Then it skips up to the master data file, reading the next record and setting up related data files.

Master to detail relationships that have been set up with the SET SKIP TO <alias> command only affect the DISPLAY, LIST and REPORT commands. The number of workareas supported is determined by the environment variable / symbol / registry entry DB_ MAXWKA. By default, this is set to 20 but it can be raised, allowing up to DB_MAXWKA-1 relationships. The SET SKIP TO command disables relationships previously set with the SET SKIP <alias> command. The SET SKIP ON/OFF commands enable or disable the satisfying of the master detail relationship defined with the SET SKIP TO <alias> command on a system wide basis.


Example

select c use invoices index cust_code select b use orders set relation to cust_code into invoices select a use customers set skip on set relation to cust_code into invoices set skip to order, invoices

Products

Recital Database Server, Recital Mirage Server, Recital Terminal Developer