ObjOSL.exe - very simple program intended for data and
class manipulations on the Demo ODBMS server.

!!! Attention! This utility and command languages are not intended
 for distribution! They are exapmles only of the work with Demo ObjDBMS 1.1.

You can use the next features:

1) Connect to the server.
2) Run OSQL script.
3) Execute ODDL, ODML and OSQL commands.
4) Store command result into 10 internal registers. 
   Syntax - &<register number>, where register number - digit from 0 to 9.
5) Use register values in your commands

   Example:
 insert MAN                              /* create new object of MAN type */
                                         /* object's id will returned as result */     
 &1                                      /* store result in the register#1 */
 update MAN set Name=''Tom'' where id=&1 /* update recent object */

 Notes:
1) You can understand command syntax with the next files help -
  OSQL.LNG, ODDL.LNG, ODML.LNG.
2) You have to use two apostrophe instead one on command string.
3) DEMO.OSQL file is example of the script usage.
