


STORE stores the command of the input area under the specified name.

Examples
store itemlist
store 'turnover_report1' replace
stor = repl
Comments
1. The specified command name may have a maximum length of 18 characters. As STORE always stores into a user's own library, the name need not be qualified with the owner's name. If lowercase characters in a command name are to be kept, the name must be enclosed in single quotes. The command name may contain any characters, apart from dots (separating the user name from the command name), question marks, underscores, asterisks, and percent signs (wild cards in a LIKE predicate).
2. If REPLACE is specified, QUERY replaces a command having the same name in the library with the new version. Otherwise, an already existing name will be rejected.
3. It is possible to use = instead of a command name when an already existing command that has been edited must be restored to the old name as displayed in the heading. In this case, the usage of REPLACE is obvious.
4. The contents of the input area are not checked; incomplete commands can be stored as well. Space lines are not stored in the library (except space lines in the form).
5. The command may contain (up to 16) formal parameters. QUERY recognizes a formal parameter by the character string &i or %i (i = 1..16). When being called, &i will textually be replaced by the i-th actual parameter.


