Wed, 12th Jan (20000112)
-----------------------
* Changed license again to get rid of Advertising clause.
  Thanks to Avery Pennarun
* Got rid of several warnings that surfaced when using -Wall
  Thanks to Avery Pennarun
* Tcl-GDBI is to be included in the Debian distribution!
  Thanks again to Avery Pennarun.

Monday, 17th May (990517)
------------------------
* License was changed a while back.
* Makefile was modified to work on Solaris.


Sun, 13th Sept (980913)
-----------------------
* INCOMPATIBILITY: Added the ability to do multiple queries on the 
same connection. 'sql query' now returns a handle to a result set
instead of returning the number of rows returned. 'sql fetchrow'
optionally takes a result set handle. Note that it becomes very
important to 'sql endquery' your queries; with the old system
doing a new query while in the middle of an existing query would
close the existing query. Now it just gives you a new result set
handle. If you don't close your queries with 'endquery' you'll
run out of result set handles.
To get the number of rows returned use 'sql numrows $conn $res_handle'

Take a look at tests/multi_query.test and tests/stuff.test
to see it in action.

I've tried to keep things as backwards compatible as possible. All
of the functions have the default argument set so that if you don't
pass them a result set handle and only do one query per connection,
things should be completely compatible. The only exception is that
'sql query' doesn't return the number of rows effected anymore.

Requested by Paul Williamson <paulw@syd.csa.com.au> .


Wed, 22nd July (980722)
-----------------------
* Used 'pkg_mkIndex sql1.0 *so' to create the pkgIndex.tcl file. Seems
to be working better this way.

Tuesday, 7th July 1998 (980707)
------------------------------
* Alex Roetter <aroetter@CS.Stanford.EDU> sent fix for working with
tcl 7.5; setting the result in sql.cc:SqlCmd was causing a problem.

Tuesday, 26th May 1998 (980526)
-------------------------------

* Fixed disconnect bug: mysql connections were not getting closed when
sql disconnect was called. Fixed.

* Added message about compile problems, seeing 
"can't resolve symbol '__moddi3'" problems. Thanks to 
Thomas Klein <Thomas.Klein@Tu-Clausthal.de> for the fix.

* Fixed api doc on 'connect': the host parameter was not listed.
Thanks to Thomas Klein <Thomas.Klein@Tu-Clausthal.de> again.

* A few more things we I have since forgotten. Sorry.

Tuesday, 17th March 1998 (980317)
---------------------------------

* Added userid and password capability to 'connect'. Thanks to 
Raymond Hall <kovalski@razteca.org.mx> for the patch.

