home *** CD-ROM | disk | FTP | other *** search
- /*
- Listing 7.5 Alias Expressions
- Author: Greg Lief
- Excerpted from "Clipper 5: A Developer's Guide"
- Copyright (c) 1991 M&T Books
- 501 Galveston Drive
- Redwood City, CA 94063-4728
- (415) 366-3600
- */
-
- #command SEEK <xpr> [ALIAS <a>] => [<a> ->] ( dbSeek(<xpr>))
- #command GOTO <n> [ALIAS <a>] => [<a> ->] ( dbGoto(<n>) )
- #command GO <n> [ALIAS <a>] => [<a> ->] ( dbGoto(<n>) )
- #command GOTO TOP [ALIAS <a>] => [<a> ->] ( dbGoTop() )
- #command GO TOP [ALIAS <a>] => [<a> ->] ( dbGoTop() )
- #command GOTO BOTTOM [ALIAS <a>] => [<a> ->] ( dbGoBottom() )
- #command GO BOTTOM [ALIAS <a>] => [<a> ->] ( dbGoBottom() )
- #command CONTINUE [ALIAS <a>] => [<a> ->] ( dbContinue() )
- #command APPEND BLANK [ALIAS <a>] => [<a> ->] ( dbAppend() )
- #command UNLOCK [ALIAS <a>] => [<a> ->] ( dbUnlock() )
- #command PACK [ALIAS <a>] => [<a> ->] ( __dbPack() )
- #command ZAP [ALIAS <a>] => [<a> ->] ( __dbZap() )
- #command DELETE [ALIAS <a>] => [<a> ->] ( dbDelete() )
- #command RECALL [ALIAS <a>] => [<a> ->] ( dbRecall() )
-
- // end of file CHP0705.CH
-