Griffon Release Notes 1.0.p
===========================

New Features:

1)      Printing is now enabled on the Editing windows!
2)      You can now drop a text file from File Manager into the query window
	and have the data loaded for you!
3)      A checkbox has been added to the Copy Table and Generate Data 
	dialogs to allow you to disable Referential Integrity.  Be warned
	this can corrupt a database!
4)      Print buttons have made it onto the Edit and Query Window Toolbars
5)      You can now save the results of a query to a text file with either
	tabs or commas as separators... (you may also include the query text
	that generated the results, and optionally the column titles)
6)      There is a new feature of query results whereby if you double-click
	on the row header or select 'View Column Text', you will get a dialog
	that will allow you to see data from your columns.  This is really
	nice in SQLWindows 4.1 because it means that the columns that
	were poorly formatted (usually long text or long varchar) are 
	easier to read
7)      A new keyword 'Griffon Dir' has been added to the Preferences 
	dialog.  This points to where Griffon is currently installed and 
	can help printing when you don't have the working directory set 
	correctly
8)      Alt-S has been added as an accelerator for Scripts
9)      When running scripts you know have the option of starting from the
	current cursor position or 'Starting from the Top of the Query Window'
10)     When running scripts  you can choose to ignore all errors
11)     Run Script has been added to the Quick Menu
12)	A new option in the Preferences dialog is the Tab Stop Width, which
	allows you to set the length/width of the tab stop in characters
	- the default is 8

Improved (bug fixes):

1)      Search and Replace no longer hang machines!... in fact they even 
	work!
2)      The Last Four Files really are the last four files!
3)      No longer GPFs with a variable reference error after opening the
	second edit window (eg SQL.INI and AUTOEXEC.BAT)
4)      If the last file can't be found on startup... you don't GPF!... 
	you know just get a nice message saying so
5)      The time to change the isolation level from 'RR' (the default)
	to 'RL' has been reduced.  In the SQLWindows 4.1 version Griffon
	will connect in 'RL' mode.
6)      If you select the 'Update Statistics' option in your export it now
	puts it correctly between the DELETE and INSERT statements instead
	of in the binds section of the insert statement.
7)      Diagnostic information is now returned if the report/print fails
8)      The Referencing error has been removed from When you shutdown with
	a result window open
9)      All Queries now yield to user action correctly!...!...!
10)     In some circumstances if you had an error after a query and pressed
	ignore it wouldn't continue to execute a script.  This bug has been
	removed
11)     Inserts with binds now warn you that they cannot work if you don't
	have a $Datatypes line to indicate the datatypes of the insert data
12)     The Wait Cursor now comes on during startup and shutdown... the INI
	manipulation was starting to get to be too long on some machines!
13)	Exports broke if you had auto-committing turned on and you were doing
	an export of indexes... this is fixed
14)	All cursors as soon as they are connected now shift to 'RL' and turn on
	cursor-context preservation
15)	The reports section has been removed from Preferences.  It was not
	of much use so I blew it away



Griffon Release Notes 1.0.o
===========================

New Features:

1)      All the SQLBase/SQLRouter SET commands are now supported from the
	query window
2)      Griffon now warns you if you have another copy of Griffon open on
	startup and can optionally switch back to it if you desire
3)      Tabbing is now available in the editor!
4)      The behavior of double-clicking on table rows in the catalog view
	has changed such that the only time you get the quick menu is
	when you double-click on the row-header
5)      A new reserved word SYB has been added to allow better support
	for Sybase/MS SQLServer users.  If you wish to pass anything 
	through to the server then this is the keyword that you should use

	E.g.:   "syb sp_who" will execute the stored procedure "sp_who"
		"syb exec sp_who" will have the same results
		"syb dbcc (syslogs)" will also work

	If your command from Sybase doesn't return any results you will be
	notified as such
6)      More sybase support in the form of SP_HelpText work!

Improved (bug fixes):

1)      The screen painting on TableWindows has been improved for query
	results where it was missing a Paint Message
2)      There is now a wait cursor when printing Tables
3)      Saving really works for files greater than 30k!!!
4)      Changes were made to support SQLWindows 4.1's different handling
	of the Menu system and WM_COMMAND
5)      Parser now ignores comments inside stored procedures for Sybase
	customers
6)      The last 4 files feature now refreshes itself after a file open
	and file save!... no more getting confused on the list!
7)      Changes have been made to the way the parser handles scripts
	this consolidates the code and should make it easier to use
8)      Parser is now *much* faster because it doesn't reformat your
	statements before sending it to be processed by the SQL engine
9)      The recursion loop in the parser has been removed (thankfully)


Griffon Release Notes 1.0.n
===========================

New Features:

1)      Stored Procedures are supported for Sybase SQLServer though you
	don't get the column headers yet we'll have to wait for SQLBase 6.0's
	documentation of the CATALOG commands
2)      The Database Sizer is revamped to allow you to get the number of
	rows in each of the System Catalog
3)      The Database Sizer now allows you to pick and choose which system
	catalog columns to include in your calculations
4)      The Database Sizer now adds the default size of the SQLBase database
	on the given platform that you are running to the calculations
5)      SYSTABLES now allows you to alter the name of a table just be editing
	the catalog view
6)      You may also drop a table fromthe SYSTABLES catalog view
6)      SYSCOLUMNS now allows you to add a column and to modify and rename
	any existing columns in the catalog.  The regular SQL rules apply

Improved (bug fixes):

1)      You no longer blow up after having done a table copy - when closing
	the dialog
2)      If you don't have anything in your query window, then it won't blow
	up when you select execute

Griffon Release Notes 1.0.m
===========================

New Features:

1)      The table view dialog has now got an option (for Roger) to allow you
	to select multiple tables and have them populated for you serially
2)      Single table exports now have the option of a where clause and an
	order by clause
3)      Passwords are now by default encrypted on the USERs dialog... there
	is a checkbox to decrypt them if you want...
4)      All user ids, passwords and server ids are now in mixed case.  This
	allows better support for foreign databases
5)      Appropriate Begin Trans are now being done so that Sybase doesn't
	complain.
6)      The error handler and ERROR.SQL browser now has a neat tool to 
	poke around in Sybase's Sysmessages... this is really useful!

Improved (bug fixes):

1)      The formatting problems relating to exports of SYNONYMS have been 
	corrected
2)      Completely revised interpreter that should *never* confuse your
	queries as it used to if you had columns that were in reserved
	words 
3)      The Table menu on system catalog views has been revised to be consistent
	with the Table menu for normal table views:  Sort Table has moved
	to the top of the menu; and Re Execute has been renamed Refresh
4)      The Results menu has been renamed on the Query Results window to
	Table
5)      The I/O Statistics ratios are now displayed as 99.03:1 and so on
	this aids readability
6)      Big mistake on my part that broke updates on table views (when I was
	implementing foreign database support) is now fixed... sorry to all
	(and shame on you for not finding it! <G>)
7)      The database statistics screens now seem to be returning valid data
8)      The users dialog now refreshes after dropping a user
9)      The invalid statistics being reported seems to have been fixed by 
	just retrieving the first word of the long and not the whole long
10)     The USERs dialog now drops users correctly when they are logged on to
	the network

Griffon Release Notes 1.0.l
===========================

New Features:

1)      Ignore all button has been added to the Error Dialog... this is only
	available when a script is running
2)      Exports now have options for Update Statistics on Tables and Indexes
3)      Exports now have the option to Export stored Commands (this is default
	on an export database) - sorry I missed it earlier.
4)      The ordering/sorting of Table and Catalog views is now remembered
	on shutdown
5)      If a table is sorted the Sort Table option is Checked
6)      If a table has a query... the Build Query option is checked
7)      Tablewindows now remember the order of your columns between populates,
	this is just a nice little feature that will stop Aaron from being
	such a grump at the office <G>
8)      The Random Data Generator has a new option 'Microseconds in Times'
	that tells it whether to generate random microsecond components
	for the time component of a date/time.  This may be marginally 
	slower becoz of the larger numbers in the math... but I haven't 
	noticed anything
9)      Griffon's Table Views have been opened up to all foreign DBMSs.
	You MUST HAVE RUN your VIEWS.SQL script from Gupta Corp in order
	for this to work... also, you must have a unique index on any
	table that you wish to be able to update
10)     The Del key is no longer enabled to 'Delete Rows' in a table view
	this was screwing up editing so I removed it...
11)     System Catalog and Index calculations have been added to the database
	sizer for SQLBase

Improved (bug fixes):

1)      Querying now works again on system catalog views, and everything is in
	order in remembering if you had show system objects and so on...
2)      Server Statistics screens have been fixed where in some cases they
	were showing values way out of range... however, the Databases screen
	still has a weird set of values (that I think are out of range) and I
	think it is becoz of a bug in swcstruc.dll from Gupta... 
	Fixed included: Output Length on Process info
3)      Fixed two bugs in the Exports... one was related to having exported a
	long binary field... it would try an export a long in the same column
	position; the second one was that in the create table statements all
	dates and times were incorrectly being defined as DateTimes.
4)      Exports fixed a bug in relating an index's keys to it if another index
	was created by a different user with the same keys.
5)      The query window now correctly recreates itself on startup if it
	was open on shutdown... apologies to Steve!
6)      A workaround is now in place (for the presumed bug in the TableWindow)
	such that columns are reporting that they have been edited, when they
	haven't... UPDATEs will no longer occur if I don't get column names
	for TableWindow columns that the TableWindow thinks have been edited
	but really haven't
7)      The Random Data Generator now generates a random time as well... thanks
	to the clever eyes of Kevin for this bug fix
8)      Fixed the hWnd.Template.Var referencing problem when you were opening
	a table view and didn't have any other windows open

Griffon Release Notes 1.0.k
===========================

New Features:

1)      A new preference "Commit after SELECTs" has been added to eliminate any
	possible locking of catalog tables by Griffon
2)      Install database has been added to the Database Menu (note that Install,
	Drop, De-Install, Create etc are all executable from the Query Window!)
3)      Added Read and Write Cache Hit Ratio columns to the Input/Output 
	Statistics - Server Window
4)      Added an overall Virtual to Physical IO column to the I/O Stats
5)      The Database sizer has been redesigned thanks to user input (and now
	should fit on a 640x480 screen...<G>) the results have been moved to
	a secondary dialog
6)      System Catalog and Index estimation will be included in 1.0.l
7)      Sybase/SQLServer has been added to the sizer... I will add Ingres and
	Oracle ASAP (and any others that will people ask for)
8)      The crazies who admit to being on the beta (but not all of Gupta TS
	because they shall remain nameless on the whole - to protect the 
	innocent <GG>) have been added to the About box so that they are 
	rewarded for their 'insanity' - a la "Dancing with the devil in
	the pale moonlight"

Improved (bug fixes):

1)      Tiling is working more regularly now (i.e. it works at all)
2)      Table Views no longer allow browsing of System Catalog tables
3)      Also double-clicking on System Tables (from the SYSTABLES catalog view
	has been disabled)
4)      The bug found when closing an orphaned (ie the Query Window was closed
	first) result window (the GPF) has been fixed
5)      The Query Plan is now a modeless dialog that has been resized and is always
	on top of Griffon
6)      The Number of Rows feature on the SYSTABLES catalog view has been fixed
	so that tables with greater than 32,000 rows now show their size correctly
7)      Changing the Local Checkbox on the Connect to Database dialog now causes
	the databases combo-box to repopulate

Griffon Release Notes 1.0.j
===========================

New Features:

1)      The user now has the ability to specify individually the reexecution on 
	startup of Queries, Catalog Views and Table Views
2)      Lazy Write caching has been added to the export system... this should
	yield big performance improvements on networks

Improved (bug fixes):

1)      Fixed the bug that basically wouldn't allow you to fire up griffon if you
	tried to reexecute anything
2)      Fixed the bug that caused an unrelated window error on startup when you
	were AutoExecuting a previous query

Griffon Release Notes 1.0.i
===========================

New Features:

1)      Some new commandlines are available:
		-OA     Override Autoreconnect
		-OE     Override autoExecutes
		-WX     Window maXimized on startup
		-WM     Window Minimized on startup
		-WN     Window Normal on startup
2)      Added status lines for 'Deleting/Updating/Inserting' so that
	on tables where lots of updates have occurred... you get a bit
	of a progress report
3)      On an Insert or an Update of a Table View the NOT null flag of 
	each column is tested to make sure that it is ok... and if not
	the user is warned... this stops needless SQL errors
4)      You are now warned when you shutdown/close a TableView if you 
	have unsaved changes

Improved (bug fixes):

1)      Fixed the bug that caused the populates after an apply edits to 
	screw up
2)      Shutting down the application now checks for unsaved changes 
	throughout the 'editable' modules/windows
3)      If an Apply Edits fails, it no longer does a refresh automatically


Griffon Release Notes 1.0.h
===========================


New Features:

1)      Views are now non-editable when picked from the table/view window
2)      Table/View dialog now shows the owner in its own column... there are
	also sorting columns for those of you out there that like that stuff
3)      Database sizer now allows you to specify numbers of rows per table
4)      Database sizer has been enhanced to calculate on the fly if you make
	changes to the fudge factor; also added another decimal point for
	more accuracy
5)      Database sizer now recalcs when you change from megabytes to kilobytes
	and vice versa
6)      Database sizer now has counts of tables you selected and has a 
	sequential status line to tell you what table it is working on
7)      Added sorting to Table views
8)      Changed updates so that they only update the columns that have changed
9)      Removed the 'Extras' Menu in place of a Table Menu... and reorganized
	some of the other menus - try double-clicking on any of the catalog views
	you usually get something!

Improved (bug fixes):

1)      Added an explicit commit after fetching the table information for use
	in a table view... this may reduce some weird locking issues on NLM
2)      Fixed the page up and down buttons!
3)      Fixed the Close all to really close all!


Griffon Release Notes 1.0.g - Beta Version Compuserve
=====================================================

Welcome to Griffon... This is a program that I have written in my spare time
and I hope that you like it... The software is pretty safe... and has not in
my experience nuked a server. 

BUT BUT BUT BUT BUT BUT this is beta software so you have been warned.

Please check out the accompanying Feature summary document also in the
SQLWin Library.

If you have any questions or comments please send them to me either
via Gupta Compuserve Forum or directly through email.  

I am more than happy to address any bugs you find and will do my best to post 
a few updates over the next month or so... after that who knows, I may have 
started the next Microsoft <G>

I took the liberty of including the summary release notes from previous
internal versions... these may give you some ideas, I don't know...

This release has only one limitation - a 30 minute trial period with a 5 minute
grace time to shutdown... sorry... but if I didn't do this then nobody 
would buy it when I have the time to *really* sell it.

Also... two warnings:

1)      Exports of Long Varchar data that is not text only... will have problems
	when importing with WinTalk or SQLTalk... the output file formats are
	not the same... (but everything else is)... 

	On the plus side... my BLOB exports go about 10 times faster than even
	SQLTalk Character mode...

2)      There's no import facility yet... (becoz I just haven't had time to write
	it... - well finish it anyway...) it should be there soon (about a week
	or so) but things are pretty busy at the office and I'm not sure when I'll
	get time.


Regards


Peter Hazlehurst
Compuserve: 73114,3145
Internet: 73114.3145@compuserve.com



Griffon Release Notes 1.0.g
===========================

New Features:

1)      Last four files opened are now remembered and shown in the file
	menu for easy access.
2)      Does inserts with binds on non-long data - slow method initially.
3)      Fast method of inserts with binds complete... still no long data
	but it is available... new feature allows the $datatypes line to
	use the following keywords: D=DateTime, Time or Date; C=Char, Varchar
	L=Long, N=Numeric.
4)      Now able to set in startup preferences to load last file auto-
	matically.
5)      Renamed a section in the INI file 'Startup and Disconnect...'
	to read 'Startup and Shutdown...'
6)      First Demo version for shipping on Compuserve
7)      Added Transaction span limits to the database parameters dialog.

Improved (bug fixes):

1)      Limited In and Out message sizes being set greater than 32K.
2)      Fixed bug in popup menu that would stop the Cursor Parameters
	dialog coming up.
3)      Fixed GPF-type bug when bringing up File New on table windows.
4)      Fixed the bug that disabled the ability to do Updates because
	of the parser detecting the set statement and executing that
	set parameter...
5)      The Users dialog now optionally sorts the list by name of user.
	This is determined by the Preference Setting: 'Order by Logical Key'.

Proposed Features:

1)      The included cmdline.txt file indicates the command line parameters
	that griffon will accept...
2)      See the final section of this document for other new features to 
	be implemented when I have a spare picasecond!


Griffon Release Notes 1.0.f
===========================

New Features:

1)      Passing a file name as a parameter will now load that file.
2)      Fully customizable exports allows any option to be exported individually
3)      Totally redesigned user interface to exports.
4)      Tuning button from the exports dialog allows the user to change cursor
	parameters such as in and out message sizes, message compression etc.
	(Recommended very large in message 128K when working on binary data).
	With tuning set right it *is* possible to outrun sqltalk character 
	mode on exports of long varchar data!!!!!!
5)      Exports now handle long data.
6)      Loading/Opening a file now shows a byte count as the file comes in,
	showing productivity...
7)      Process activity log handling has been substantially modified to show
	the user more information and allow them to timestamp the log.
8)      Exports now export all the RI rules.


Improved (bug fixes):

1)      Fixed fundamental bug in the statistics windows... they now are accurate
	on their second to n lines of information, which in the past was 
	inaccurate unless you were looking at cursor information.
2)      Banner is now sized better for other display screens.
3)      If you shutdown when minimized Griffon will now startup
	correctly minimized as you were - instead of putting a really
	small window down where an icon should have been.
4)      More work done to ensure SQL cursors are accurately handled.
5)      Fixed bug in export when exporting schemas for LONG VARCHARS (it
	used to export LONGVAR instead!).
6)      Added double quotes around CHAR/VARCHAR fields in exports.
7)      Fixed out of array bounds errors when disconnecting a cursor.
8)      Fixed the not-valid SQL errors which were caused when executing something
	that had lots of spaces or reserved chars (carriage returns etc) at the end
	of it.
9)      Fixed the fact that when you went back to the query window, the whole
	thing was always selected and highlighted.
10)     Added a new return so that if nothing was executed the status line now
	says 'Nothing to execute'...
11)     Fixed bug in Use Database dialog... which actually caused me to fix
	a whole pile of non-destructive bugs that had been sitting around in the
	background unnoticed related to multiple cursors and the like... anyway
	it all seems to work now! (These turned out to be workarounds required
	by PTF6!!!!) - Fixed it again for PTF7...!!!!
12)     Resized the choose table dialog to allow more tables to be seen!
13)     Fixed a slight screen painting bug on the Synonyms dialog.
14)     Fixed bug in synonyms dialog that stops table window overflow
15)     Fixed bug in password encryption that doesn't like the letter 'O'!
16)     Did a work-around for stupid table window painting bug of Gupta's
	on tablewindows that aren't populated from database tables.
17)     Cursor and Database parameter dialogs are now MODAL not modeless.
18)     The auto create index feature has been dropped because I didn't like it!


Griffon Release Notes 1.0.e
===========================

New Features:

1)      Update statistics options added to the table and index catalog views.
2)      Sensitivity for NON-SQLBase database engines improved to disable options that
	are not appropriate.
3)      System catalog views now work for non SQLBase database engines provided that
	the SYSSQL views have been run.
4)      Query Window does not have to be visible (i.e. it can be closed if required).
5)      Scheduler is now implemented allowing Scheduling of Backups, Server terminates
	and custom applications.
6)      Users may now choose fonts and colors for the editor.
7)      Find and Replace buttons have been added to the toolbar.
8)      Scripts can now be stopped.  A dialog similar to the 'Query: Fetch Rows' dialog
	has been added to do this.
9)      Statistics windows can now log to a text file! Yeah... The output is tab separated
	and will easily go into Excel or Word.
10)     Statistics can be timered to refresh per window, rather than globally as was the
	case in prior versions.
11)     Database Sizer has been added to the Database menu... use it to estimate the
	size of tables/databases.
12)     Users may choose the character to be used as the end of a SQL statement, this is
	defined in the Preferences dialog.
13)     New login screen shows the GRIFFON bitmap...!!!!!!

Improved (bug fixes):

1)      Removed the requirement to fill in a password when connecting to the database.
2)      Modify privileges dialog is now available to all users and will show all tables
	that they have created or own.
3)      Removed the log point feature on the export because it really didn't make any
	sense to do a commit given that all that is happening is a select.
4)      Internally exports have been completely rewritten to make them crank just a 
	little bit faster... and to make them easier to maintain!
5)      Exports now actually stop at the specified endpoint.
6)      The View... Table/View... dialog has changed so that you can now see what type
	of object (table or view) that you would be fetching on. This means that pressing
	a letter in the alphabet will not hotkey to the right letter in the list... sorry.
	BUT... It does mean that all table/view views now know their table creator/owner
	so that some foreign backends now work better where they require that the table
	be owner/creator qualified.
7)      Fixed minor bugs in auto reconnect features to stop it from auto connecting
	after a failure.
8)      Fixed repaints of the MDI when running the application the first time.
9)      Exports now export the column names in the INSERT statement to make moving
	between databases that have columns in different orders easier.
10)     All the editor options from the 'View' menu have been moved under a popup menu
	'Editor' to make the menu a little bit shorter.
11)     To open a query window after having closed it, either select New or Open from the 
	File menu.
12)     Opening a file no longer shows its file size... this improves performance when
	opening the file.
13)     Reconnect behavior is now correctly remembered!
14)     Faster and slightly more accurate algorithms in the random data generator.
15)     Revised toolbar buttons with more color!
16)     System Catalog views don't start to yield until the query has been
	prepared and executed.  (The same behavior will be there for queries when 
	Gupta fix the bug in the table window object!)
17)     The Query Plan Window no longer comes up when you press the button, instead it is shown
	only if you execute a query with the button depressed.
18)     The Query parser should now work perfectly (it does here anyway) in that
	it should move the cursor around better than it did before.
19)     Statistics Windows now no longer have a blank row to separate each refresh
	of the statistical information.  However, the stats columns change
	color between Dark Red and Black instead.



Griffon Release Notes 1.0.d
===========================

New Features:

1)      The dialog that indicates rows are being fetched, now tells you that 
	the query is being processed first, and then that data is being 
	fetched.
2)      Popup menu on SYSTABLES now includes (adds) the ability to quick 
	load the Table Authorities, Indexes and Synonyms for the given table.
3)      Added Release Notes... option to the help menu.
4)      All users may use the Number Of Rows... option in the System Table view
5)      There is now the ability to export just the schema from the database
	with no data.
6)      Exports now allow custom 'End-of-SQL' terminators (providing support
	for other query engines).
7)      It is now possible to enable the auto reconnection of both database and
	server connections to the database/server.  Passwords have been provided
	for both so that you can type in different 'login' passwords for both
	server and database connections.
8)      Close All option has been added to the Window menu. 
9)      It is now possible to have all queries and catalog views (that were open
	at time of program shutdown) re-executed when the program is restarted.

Improved (bug fixes):

1)      Table limits on all catalog views has been upped to 2000 rows.
2)      Fixed auto-tiling bugs in the MDI
3)      Editing is no longer enabled on the results of queries... (it never
	actually did anything!)
4)      On an export, if you say no to overwrite an existing file then the close
	button is now re-enabled.
5)      Re-Execute now works ok for query results.
6)      File commands now have slightly modified lists of file types that are 
	available to be opened.  This makes them slightly more readable.
7)      Because of the need to get more information about Auto reconnection and
	so on, the Preferences dialog has been altered, with the 'Disconnect All
	cursors and Server connections' check box being moved to the 'Startup
	and Shutdown Behavior Dialog'.
8)      Pasting of table rows has been disabled for all table windows except the
	editable Table view.



Griffon Release Notes 1.0.c
===========================

New Features:

1)      Table/View... option under the View menu allows the user to select a 
	table/view to go directly to the data.
2)      Quest-style edit windows that when viewing table data allow the user
	to insert, update and delete data.
3)      Double-clicking on a Table in the SYSTABLES catalog view now brings
	up a short-menu allowing the user to choose between the table's data
	or the columns in the table
4)      Double-clicking on an index in the SYSINDEXES catalog view will bring
	up SYSKEYS catalog view on the correct columns
5)      New Preferences option to sort catalog views by programmer defined 
	logical key
6)      Dates may now be used as key increments in the random data generator.
	Because of this change any previous *.rdg files will no longer be
	compatible - sorry... Increments are in either Years, Months, Days,
	Hours, Minutes or Seconds but not a combination of any of these options
	- perhaps in a later version.
7)      Cancel option on Quick Menu.
8)      Toolbar now enables/disables buttons.

Improved (bug fixes):

1)      No longer able to drop SYSSQL from User IDs dialog.
2)      Log Processes and Server parameters dialogs no longer suffer double-
	radio button disease!
3)      Copy to/from floppy options on backup/restore screens now default to 
	off.
4)      New connect/disconnect/choose buttons on the toolbar.
5)      Fixed bug in RDG that failed to generate accurate random numbers.
6)      Completely revised the Extras menu to make it more context sensitive
	and get rid of unnecessary functionality on different screens.
7)      Search and Replace dialogs now have close buttons and revised prompts.
8)      When an error in SQL occurs, the cursor will blink in the multi-line
	field at the offending point.
9)      Generator and Exporter now yield correctly.
10)     Making a change on the RDG now highlights that row in the table in 
	dark red text.
11)     Case sensitivity has been removed when connecting to a 'LOCAL' 
	database server.

------------------------------------------------------------------------------


General Information current against all releases of Griffon
===========================================================

Outstanding:

1)      RESTORE LOGS, DATABASE options from the RESTORE dialog.
2)      BACKUP and RESTORE from the command-line.
3)      Imports.
4)      Printing from the Query and Edit windows.
5)      Searching of Tables and Result Sets through the Search and Replace
	dialogs.
6)      Statistical graphing:   Connects v Time
				Processes v Time
				I/O Real/Virtual/Both v Time
				# Process Switches v Time
				Database file size growth
				Log file utilization.

Known Bugs:

1)      Clicking on a row in the disconnect dialog causes an additional
	line on the table window to be highlighted. This is a logged bug
	with Gupta Corp.

	Work around has been implemented in 1.0.f.

2)      Quest-style edit/insert windows allow one extra character per 
	database char/varchar column to be entered into them. This is a
	logged bug with Gupta Corp.

	Work around has been implemented in 1.0.e

3)      Printing tables don't correctly title column headers and so on.
	This is a logged bug with Gupta Corp.

	Still outstanding as of 1.0.f

4)      Export may not work too well with non-SQLBase database engines...
	take care.  (Should not be attempted without the views in place!!)

	Should be fine in 1.0.f
