Examples
                  The CURSORDISPLAY ON set option instructs OdxSQL to display 
                    the cursor number to the window as the cursor is opened. 
                  >OPEN CURSOR 
                    Opened cursor 
                    >SET CURSORDISPLAY ON 
                    >OPEN CURSOR 
                    Opened cursor 2 
                  It also causes OdxSQL to display the new current instance 
                    and cursor numbers if a different cursor is assigned to be 
                    the current cursor, or the affected cursor number if a cursor 
                    is closed. 
                  >SET CURSORDISPLAY ON 
                    >OPEN CURSOR 
                    Opened cursor 3 
                    >SET CURSOR 2 
                    Current instance is now 1, and current cursor is now 2 
                    >CLOSE CURSOR 
                    Closed cursor 2 
                  The instance number and cursor number are displayed for connections. 
                  >SET CURSORDISPLAY ON 
                    >connect /users/garment.env 
                    Connected to /users/garment.env on instance 2, cursor 2 
                  
                    
                  top 
                  
			   |