home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / misc / sqldb.lzh / sqldb / doc / sqldb_startup.doc < prev    next >
Encoding:
Text File  |  1992-08-28  |  1.1 KB  |  42 lines

  1.  
  2. Installation
  3. ------------
  4.  
  5.     Copy the main program sqldb/db to a directory in your executable path.
  6.     Add the assignment SQLDB: to your startup-sequence and have it point
  7.     to a central location for your tables.
  8.  
  9.     In SQLDB:, create a file called lock_file.  It just has to exist.
  10.  
  11.     Make sure that your stack is set to 30000!!  Add 25000 or so for each
  12.     level of subquery that you intend to use.
  13.  
  14. Getting Started
  15. ---------------
  16.  
  17.     Command-line options to SQLdb:
  18.  
  19.     Option    Arguments    Default        Meaning
  20.     ------    ---------    -------        -------
  21.     -t    'd' or 'r'    'r'        Temporary table storage
  22.     -s    none        NA        Server mode
  23.  
  24.  
  25.     Temporary Tables
  26.  
  27.     Temporary table are created whenever you give SQL a select query to
  28.     perform.  The -t option allows you to specify where you wish the 
  29.     temporary tables to be stored.
  30.  
  31.     The 'r' argument specifies that temporary tables are to be stored in
  32.     main memory.
  33.  
  34.     The 'd' argument specifies that temporary table are to be stored in
  35.     the current directory from which SQLdb was started from.
  36.  
  37.     Server Mode
  38.  
  39.     When started up in Server Mode, SQLdb will open up an ARexx port and
  40.     await commands from the port.
  41.  
  42.