
Installation
------------

	Copy the main program sqldb/db to a directory in your executable path.
	Add the assignment SQLDB: to your startup-sequence and have it point
		to a central location for your tables.

	Please delete *.doc file from previous versions.  New new files exist
	in this version that replace files from previous versions.
 
Getting Started
---------------

	Command-line options to SQLdb:

	Option	Arguments	Default		Meaning
	------	---------	-------		-------
	-t	'd' or 'r'	'r'		Temporary table storage
	-s	none		NA		Server mode


	Temporary Tables

	Temporary table are created whenever you give SQL a select query to
	perform.  The -t option allows you to specify where you wish the 
	temporary tables to be stored.

	The 'r' argument specifies that temporary tables are to be stored in
	main memory.

	The 'd' argument specifies that temporary table are to be stored in
	the current directory from which SQLdb was started from.

	Server Mode

	When started up in Server Mode, SQLdb will open up an ARexx port and
	await commands from the port.

