home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 579a.lha / sqldb_v1.0alpha2 / doc / sqldb_startup.doc < prev    next >
Text File  |  1991-11-25  |  1KB  |  40 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.     Please delete *.doc file from previous versions.  New new files exist
  10.     in this version that replace files from previous versions.
  11.  
  12. Getting Started
  13. ---------------
  14.  
  15.     Command-line options to SQLdb:
  16.  
  17.     Option    Arguments    Default        Meaning
  18.     ------    ---------    -------        -------
  19.     -t    'd' or 'r'    'r'        Temporary table storage
  20.     -s    none        NA        Server mode
  21.  
  22.  
  23.     Temporary Tables
  24.  
  25.     Temporary table are created whenever you give SQL a select query to
  26.     perform.  The -t option allows you to specify where you wish the 
  27.     temporary tables to be stored.
  28.  
  29.     The 'r' argument specifies that temporary tables are to be stored in
  30.     main memory.
  31.  
  32.     The 'd' argument specifies that temporary table are to be stored in
  33.     the current directory from which SQLdb was started from.
  34.  
  35.     Server Mode
  36.  
  37.     When started up in Server Mode, SQLdb will open up an ARexx port and
  38.     await commands from the port.
  39.  
  40.