Post-Relational Database Command Reference
 ZEBRA 
 BASIC 
 BASIC
   ABORT
   ASSIGNMENT
   BOOLEAN
   BRANCHING
   COMPILE.TIME
   CONSTANT
   DIMENSION
   DYNAMIC
   EQUATE
   EXECUTE
   IO
   MATH
   STRING
   SYSTEM
   TABLE
   TAPE
   TBD
   TRANSFORM
A Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
ABORTStops execution and returns to command level.
B Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
BEGIN CASEBEGIN CASE and END CASE are designed to bracket a set of CASE statements.
BREAK KEYDetermins whether or not a user can issue a break command to interrupt the execution of a program.
C Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
CALLTransfer control to a subroutine, with the expectation that control will transfer back when the subroutine encounters a RETURN.
CASECASE statements are a cleaner form of cascading IF-THEN-ELSE.
CHAINUse this command to transfer control from on program to another with no method for returning.
D Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
DODO is a looping command.
E Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
ELSEIt is used only in conjunction with another branching command. THEN is the "Yes" path. ELSE is the "No" path.
ENDUsed by several different branching commands to end a conditional block of code. It can also be used to establish physical end of program, a point after which the compiler will ignore all text in a program.
END CASEBEGIN CASE and END CASE are designed to bracket a set of CASE statements.
ENTERUse this command to transfer control from on program to another with no method for returning.
F Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
FORThis is a looping command, which is a special form of branching command, designed to repeat a block of code.
G Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
GOUse this command when you want to jump to a different point in the code with no need to return.
GOSUBGOSUB allows a program to detour to a label within the same program and then resume from the original point when it encounters a RETURN.
GOTOUse this command when you want to jump to a different point in the code with no need to return.
I Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
IFThis is the primary branching command. I is used to include and excludeblocks of code dynamically at runtime.
INPUTIFAllows several things to be mashed into a single, poorly thought out command. Use INPUT instead and increase readability.
L Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
LOCATEThere are two syntaxes for the LOCATE. Both are explained here.
LOOPInitiates a DO loop.
N Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
NEXTPart of the FOR loop.
P Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
PERFORMExecutes a command as if issued from the command line.
R Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
READNEXT
S Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
STEPOptional part of the FOR command.
STOPStops execution and returns to command level.
T Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
THENIt is used only in conjunction with another branching command. THEN is the "Yes" path. ELSE is the "No" path.
TOUsed in FOR, EQU amd EQUATE.
U Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
UNTILManges the exit from a DO or FOR loop.
W Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
WHILEManges the exit from a DO or FOR loop.
Idea Index: A  B  C  D  E  F  G  I  L  N  P  R  S  T  U  W  Idea  
BRANCHINGWithout branching, programs would execute each command once, in order. Branching allows us to repeat sections of code, perform some sections conditionally, and skip others based on external events.

More Details or Suggestions?
           

MV Updated from a Post-Relational data table on 10:18:38 23 Apr 2010
Courtesy of Key Ally, Inc.
General Automation is a Trademark of Tiger Logic


Post-Relational (adjective) relating to databases which are a superset of SQL and XML, offering highly structured data with both relational and multi-value approaches available.

PRDB Reference (noun) repository of commands, concepts, and code designed for the various Post-Relational databases.