Difference between revisions of "SET VIEW"
From Recital Documentation Wiki
		
		
		
| Yvonnemilne  (Talk | contribs) | Helengeorge  (Talk | contribs)  | ||
| (6 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| ==Purpose== | ==Purpose== | ||
| Establish a view previously defined with the CREATE VIEW command | Establish a view previously defined with the CREATE VIEW command | ||
| Line 15: | Line 8: | ||
| ==See Also== | ==See Also== | ||
| − | CREATE VIEW, SET RELATION,  | + | [[ALIAS()]], [[CREATE BRIDGE]], [[CREATE VIEW]], [[INDEX]], [[SET FORMAT]], [[SET INDEX]], [[SET ORDER]], [[SET RELATION]], [[USE]] | 
| Line 23: | Line 16: | ||
| ==Example== | ==Example== | ||
| − | < | + | <code lang="recital"> | 
| use patrons index events, dates, names | use patrons index events, dates, names | ||
| // View patrons.vue defines the above command | // View patrons.vue defines the above command | ||
| − | set view to patrons</ | + | set view to patrons | 
| + | </code> | ||
| ==Products== | ==Products== | ||
| − | Recital  | + | Recital Server, Recital   | 
| [[Category:Documentation]] | [[Category:Documentation]] | ||
| [[Category:Commands]] | [[Category:Commands]] | ||
| − | [[Category:Set_Commands]] | + | [[Category:Set_Commands|VIEW]] | 
Latest revision as of 15:52, 25 November 2009
Purpose
Establish a view previously defined with the CREATE VIEW command
Syntax
SET VIEW TO <.vue filename> | (<expC>)
See Also
ALIAS(), CREATE BRIDGE, CREATE VIEW, INDEX, SET FORMAT, SET INDEX, SET ORDER, SET RELATION, USE
Description
The SET VIEW TO <.vue filename> command establishes a logical view of a group of tables, which can then be viewed as one if they are related together. The filename can be substituted with a <expC>, enclosed in round brackets, which returns a valid filename. If no file extension is specified, ’.vue’ is used. Once a view has been established, the workarea that was current when the view was created is selected.
Example
use patrons index events, dates, names // View patrons.vue defines the above command set view to patrons
Products
Recital Server, Recital
