Example
                  ABORT
                  > set errors abort 
                    > use useme.txt 
                    > connect order.env 
                    *E* Environment requested is nonexistent (C:\omnidex\Demodata\order.env) 
                  OdxSQL stopped processing the commands in the use file. 
                    
                  CONTINUE
                  > set errors continue 
                    > use useme.txt 
                    > connect order.env 
                    *E* Environment requested is nonexistent (C:\omnidex\Demodata\order.env) 
                    > ;<section=secname> 
                    > open cursor 
                    *E* This statement requires a connection to an environment 
                    file 
                    > cd c:\omnidex\bin 
                    c:\omnidex\bin 
                    > ;<end_section> 
                    > select company from customers where state='co' 
                    *E* This statement requires a connection to an environment 
                    file 
                    > ;<COMMON> 
                    > DISCONNECT 
                    *E* Invalid instance 
                    > ;<END_COMMON> 
                    > 
                  Because ERRORS was set to CONTINUE, OdxSQL attempted to process 
                    the rest of the commands in the USE file, even though the 
                    connect failed. More errors occurred on commands that required 
                    a connection. 
                    
                  EXIT
                  > set errors exit 
                    > use useme.txt 
                    > connect order.env 
                    *E* Environment requested is nonexistent (C:\omnidex\Demodata\order.env) 
                  C:\omnidex\Demodata> 
                  Because ERRORS was set to EXIT, the OdxSQL utility was terminated 
                    when an error occurred. 
                  
                    
                  top 
                  
			   |