TOP X mssql limit clause must appear after DISTINCT if they are both present
[clsql.git] / ChangeLog
1 2011-06-27  Nathan Bird  <nathan@acceleration.net>
2         * db-odbc/: memory management improvements: leak slower
3         * MSSQL: TOP + DISTINCT work together
4
5 2011-06-20  Nathan Bird  <nathan@acceleration.net>
6
7         * sql/time.lisp: Handle parsing already parsed objects.
8         * sql/oodml.lisp: raise exception if we generate an update with no
9         where clause; incorporate Ryszard Szopa's patch for functional
10         expressions in :order-by
11         * sql/expressions.lisp: (listify nil) => nil instead of (nil).
12         * db-odbc/: bugfixes for working with older versions of FreeTDS;
13         support for bigints that works on mssql and postgres
14         * MSSQL improvements: use top instead of limit, IDENTITY can be a
15         column constraint, clsql:date becomes 'smalldatetime'
16
17 2011-06-20  Nathan Bird  <nathan@acceleration.net>
18
19         * Version 5.3.4
20         * db-postgresql-socket/postgresql-socket-api.lisp: Addendum
21         to Otto Diesenbacher's patch that had a spurious write a 0
22         byte (to terminate string) that should have been just CCL.
23
24 2011-06-12  Kevin Rosenberg <kevin@rosenberg.net>
25         * Version 5.3.3
26         * db-postgresql-socket/postgresql-socket-api.lisp:
27         Patch from Otto Diesenbacher for UTF8 encoded strings
28         for CCL. FIXME: The best patch would be to use the
29         user-set encoding from the database object and use
30         UFFI's encoding strings to/from octet vectors rather
31         than SB-UNICODE and CCL specific code in this file.
32
33 2011-04-21  Kevin Rosenberg <kevin@rosenberg.net>
34         * sql/generics.lisp: Add defgeneric for new
35         database-last-auto-increment-id
36
37 2011-04-01  Kevin Rosenberg <kevin@rosenberg.net>
38         * Version 5.3.2
39         * db-mysql/mysql-client-info.lisp: Add recognition of
40         version 6 of MySQL client library.
41         * sql/metaclass.lisp: Fix the fix in the reader conditional
42
43 2011-03-30  Kevin Rosenberg <kevin@rosenberg.net>
44         * Version 5.3.1
45         * sql/metaclasses.lisp: Fix previous patch to work
46         on non-SBCL systems
47
48 2011-03-29  Kevin Rosenberg <kevin@rosenberg.net>
49         * Version 5.3.0
50         * sql/metaclasses.lisp: Apply one-line patch to fix
51         for newer SBCL (thanks to Nikodemus Siivola)
52         * many_files: Applied multiple patches from Holger Schauer
53         to improve autoincrement capability.
54
55 2010-10-24  Kevin Rosenberg <kevin@rosenberg.net>
56         * Version 5.2.0
57         * db-odbc/odbc-api.lisp: Change from SBCL-specific
58         to UFFI version of octets-to-strings. Reported by
59         Daniel Brunner <daniel@dbrunner.de>
60         * sql/oodml.lisp: Apply patch from Rupert Swarbrick
61         <rswarbrick@gmail.com>: Fix behaviour with auto-inc
62         primary keys.
63         * sql/expressions.lisp, tests/test-syntax.lisp: Apply
64         patch from Russ Tyndall to quote identifiers with space
65         or special character.
66
67 2010-09-20  Kevin Rosenberg <kevin@rosenberg.net>
68         * Version 5.1.4
69         * sql/{pool,database}.lisp: Pass encoding argument to
70         connections made from pool and with reconnect.
71
72 2010-08-16  Kevin Rosenberg <kevin@rosenberg.net>
73         * Version 5.1.3
74         * db-odbc/odbc-{api,dbi}.lisp: Commit patch from
75         Memet Bilgin to fix issue with unicode and ODBC.
76
77 2010-08-16  Kevin Rosenberg <kevin@rosenberg.net>
78         * Version 5.1.2
79         * uffi/clsql-uffi.lisp: Commit patch from JT Klein fixing
80         invocation of uffi:convert-from-foreign-string macro. When
81         time allows, I'll investigate changing UFFI's macro to
82         a function call and then revert this patch.
83
84 2010-06-15  Kevin Rosenberg <kevin@rosenberg.net>
85         * Version 5.1.1
86         * clsql-{uffi,mysql}.asd: Modify operation-done-p functions
87         to guard against change introduced in new ASDF traversing.
88
89 2010-04-20  Kevin Rosenberg <kevin@rosenberg.net>
90         * Version 5.1.0 [DEPENDENCY UPGRADE: UFFI 2.x needed]
91         * clsql-uffi.asd: Depend on UFFI version >= 2.0
92         to support foreign encoding of strings.
93
94 2010-04-16  Kevin Rosenberg <kevin@rosenberg.net>
95         * Version 5.0.6
96         * db-postgresql.lisp, sql/fddl.lisp: Fix typos [Thanks to
97         Walter C. Pelissero]
98         * sql/metaclasses.lisp: Work around type-check-function being set
99         during defclass expansion in SBCL [Thanks to Walter C. Pelissero]
100         * uffi/clsql-uffi.lisp: In call to uffi:convert-from-foreign-string,
101         Set null-terminated-p to T when length not specified.
102         [Thanks to Walter C. Pelissero]
103
104 2010-03-21  Kevin Rosenberg <kevin@rosenberg.net>
105         * Version 5.0.5
106         * sql/fdml.lisp: Fix DO-QUERY to actually return the last value of
107         the body.
108
109 2010-03-02  Nathan Bird  <nathan@acceleration.net>
110         * doc/: Added a README on how to build doc; now builds on Ubuntu.
111         * sql/oodml.lisp: READ-SQL-VALUE now has explicit method for
112         handling double-floats and the default method will no longer
113         attempt to convert values that have already been converted.
114         * sql/syntax.lisp: Introduce file-enable-sql-reader-syntax which
115         enables the syntax for the scope of the file without trying to
116         keep track of the current syntax state.
117         * sql/pool.lisp: Introduce
118         clsql-sys:*db-pool-max-free-connections* which is a heuristic
119         threshold for when to disconnect a connection rather than
120         returning it to the pool.
121         * sql/pool.lisp: Check connections for validity before returning
122         to the user.
123
124 2010-03-01  Kevin Rosenberg <kevin@rosenberg.net>
125         * db-mysql/mysql-api.lisp: Remove spurious enumeration
126
127 2010-02-16  Kevin Rosenberg <kevin@rosenberg.net>
128         * Version 5.0.4
129         * db-mysql/mysql-api.lisp: Fix mysql_options UFFI parameter list
130         * doc/ref-connect.xml: Document the MySQL options parameter as
131         part of the connection-spec.
132
133 2010-02-15  Kevin Rosenberg <kevin@rosenberg.net>
134         * db-mysql/mysql-{api,sql}.lisp: Support sending options
135         to MySQL using mysql_options, which occurs between the API calls
136         of mysql_init and mysql_real_connect.
137
138 2010-02-11  Kevin Rosenberg <kevin@rosenberg.net>
139         * Version 5.0.3
140         * multiple-files: Further internationalization. Change
141         UFFI:CONVERT-RAW-FIELD and UFFI:CONVERT-FROM-FOREIGN-STRINGS
142         invocations to use the foreign character set encoding of the
143         database object. Requires UFFI v.1.8.6
144         * Makefile.common: Fix OS_DARWIN64 setting
145
146 2010-02-11  Nathan Bird  <nathan@acceleration.net>
147         * MSSQL: better support for fddl 'date type.
148
149 2010-02-11  Kevin Rosenberg <kevin@rosenberg.net>
150         * Makefile.common, uffi/Makefile, db-mysql/Makefile:
151         Better support OS X Snow Leopard by building universal
152         (x86_64,i386) dylib bundles
153
154 2010-02-08  Kevin Rosenberg <kevin@rosenberg.net>
155         * Version 5.0.2
156         * sql/database.lisp: Fix missing slot-accessor 
157         (Thanks to Stelian Ionescu)
158         * sql/generics.lisp: Add missing keyword to defgeneric
159         (Thanks to Stelian Ionescu)
160
161 2010-02-07  Kevin Rosenberg <kevin@rosenberg.net>
162         * Version 5.0.1
163         * sql/{base-classes,database}.lisp: Add encoding slot for 
164         non-ASCII strings.
165         * db-mysql/mysql-sql.lisp: Use UFFI:FOREIGN-ENCODED-OCTET-COUNT.
166         Requires UFFI version 1.8.2 or above.
167
168 2010-02-06  Kevin Rosenberg <kevin@rosenberg.net>
169         * Version 5.0.0: First release of CLSQL to formally and
170         consistently support non-ASCII strings with encoding of external
171         formats for SQL strings. UFFI version 1.8.1 is higher is required.
172
173         This change may introduce some differences in string handling for
174         people who are using non-ASCII encoded characters.  Thus, because
175         of the risk of BACKWARD INCOMPATIBILITY, the major version number
176         was incremented with this release.
177
178 2010-02-06  Kevin Rosenberg <kevin@rosenberg.net>
179         * tests/test-i18n.lisp: Bind UFFI:*DEFAULT-EXTERNAL-FORMAT*
180         for testing multibyte encodings.
181         * uffi/clsql-uffi.lisp: Changes for UFFI 1.7.4's new support
182         for encoding foreign strings with a specified external format.
183
184 2010-02-06  Kevin Rosenberg <kevin@rosenberg.net>
185         * sql/metaclasses.lisp: If no declared slot type in
186         compute-lisp-type-from-specified-type, then use t as lisp type.
187         Issue noted when testing Clozure CL 1.4.
188
189 2010-02-06  Kevin Rosenberg <kevin@rosenberg.net>
190         * tests/test-init.lisp: Turn off the benign console notices for
191         testing on postgres.
192
193 2010-02-05  Kevin Rosenberg <kevin@rosenberg.net>
194         * clsql-test.asd, tests/{test-i18n,test-init}.lisp:
195         Load test-i18n.lisp and use its tests as long as 'uffi:no-i18n is
196         not present in cl:*features*. This requires UFFI 1.7.2 or above.
197
198 2010-02-05  Kevin Rosenberg <kevin@rosenberg.net>
199         * sql/utils.lisp: Reading #\no-break_space causes an
200         error for non-unicode SBCL. Conditionalize read of
201         #\no-break_space for non-unicode SBCL and 8-bit string
202         Allegro.
203
204 2010-02-03  Kevin Rosenberg <kevin@rosenberg.net>
205         * tests/test-init.lisp: Add *test-report-width* variable
206         and word-wrap skipped test reason field.
207
208 2010-01-29  Kevin Rosenberg <kevin@rosenberg.net>
209         * Version 4.3.3
210         * clsql-cffi.asd: New file that causes CLSQL to use
211         CFFI-UFFI-COMPAT library rather than UFFI. Perform 'asdf:load-op
212         on CLSQL-CFFI rather than CLSQL system to use CFFI-UFFI-COMPAT.
213
214 2010-01-29  Nathan Bird  <nathan@acceleration.net>
215         * tests/*.lisp: A lot more tests and test setup tweaks.
216         * sql/expressions.lisp: output-sql on sql-relational-exp does
217         better arity checking now. (apply #'sql-and some-list) gives
218         better results.
219
220 29 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
221         * sql/oodml.lisp: Fix for UPDATE-RECORD-FROM-SLOTS for normalized
222         view classes
223
224 28 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
225         * Version 4.3.2
226         * Change "normalise" from British spelling for consistency with
227         other American spellings in CLSQL.
228
229 28 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
230         * db-mysql/Makefile: Add directory for Fedora 11/12 on 64-bit
231         platform (Thanks to Michael Pheasant) and remove a 32-bit directory
232
233 28 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
234         * Version 4.3.1
235         * sql/utils.lisp: Ensure Lispworks 6 lock is created in sharing mode
236
237 20 Jan 2009  Nathan Bird <nathan@acceleration.net>
238         * Version 4.3.0
239         * Rewrite tests to use datasets
240
241 07 Jan 2009  Kevin Rosenberg <kevin@rosenberg.net>
242         * sql/utils.lisp: Changes to support Lispworks 6
243
244 10 Dec 2009  Kevin Rosenberg <kevin@rosenberg.net>
245         * Version 4.2.0
246         * doc/ref-ooddl.lisp: Add needed CDATA escapes
247         * doc/clsql.pdf, doc/html.tar.gz: Build new manuals with
248         normalized view classes.
249
250 10 Dec 2009  Kevin Rosenberg <kevin@rosenberg.net>
251         Large patch from Thijs Oppermann <thijso+clsql@gmail.com> to add
252         support for normalized view classes.  When having view class that
253         inherit from others, CLSQL by default builds tab all the columns
254         from the parent in the child. This patch is meant to normali so
255         that a join is done on the primary keys of the concerned tables to
256         get a set.
257
258 10 Dec 2009  Kevin Rosenberg <kevin@rosenberg.net>
259         * sql/time.lisp: Patch from Oleg Tihonov to SYNTAX-PARSE-ISO-8601
260         to properly parse fractions of seconds.
261
262 10 Dec 2009  Kevin Rosenberg <kevin@rosenberg.net>
263         * sql/time.lisp: Patch from Oleg Tihonov to roll function
264         to properly use USEC argument.
265
266 21 Nov 2009  Kevin Rosenberg <kevin@rosenberg.net>
267         * Version 4.1.2
268         * Makefiles: On 64-bit Linux systems, try to build both 32 and 64-bit
269         interface libraries. This requires the installation of multiarch build tools
270         as well as 32-bit support libraries (libc, libz and libmysqlclient).
271
272 04 Sep 2009  Kevin Rosenberg <kevin@rosenberg.net>
273         * Version 4.1.1
274         * sql/fdml.lisp: Rework do-query to use supplied database
275         parameter when passed a sql-object-query
276         (thanks to JTK <jetmonk@gmail.com>)
277         * sql/generic-postgresql.lisp: Allow optional connect
278         parameters for postgresql databases (thanks to Stephen Compall)
279         * doc/ref-{clsql,connect}.xml, sql/db-interfaces.lisp:
280         Fix transposed letters (thanks to Stephen Compall)
281         * db-mysql/Makefile: Add directory for MacPorts mysql5 port
282         (thanks to Stephen Compall)
283         * sql/database.lisp: Have database-type default be
284         *default-database-type* (thanks to Desmond O. Chang)
285         * sql/transactions.lisp: Improved handlining of nested
286         transactions (thanks to Eli Naeher)
287         * sql/time.lisp: Commit patch to fix parse-iso-8601-duration
288         (thanks to Stephen Compall)
289         * sql/database.lisp: Use :verbose nil for asdf:operate
290         invocation (Thanks to Mackram Raydan)
291         * sql/metaclasses.lisp: Rework initialize-instance for
292         view-class-direct-slot-definition (thanks to Stephen Compall)
293
294 31 Aug 2009  Kevin Rosenberg <kevin@rosenberg.net>
295         * sql/db-interface.lisp: Fix spelling error (thanks to
296         David Thompson)
297         * clsql-mysql.asd/db-mysql/mysql-loader.lisp: Commit
298         patch from Andreas Franke to honor windows drive letter
299         when loading clsql_mysql C library.
300
301 31 Aug 2009  Kevin Rosenberg <kevin@rosenberg.net>
302         * Version 4.1.0
303         * db-mysql/mysql-{sql,api}.lisp,db-mysql/clsql_mysql.c:
304         Latest version of mysqlclient once again changed the C
305         structures from which the mysql backend reads data.
306         Rather than adding yet another structure definition which
307         is enabled by the client version as read by mysql-client-info.lisp,
308         the mysql backend has been re-written to ignore in the internal
309         C structures. Instead, C wrapper functions for slot access have
310         been added to clsql_mysql.c and are used by mysql-sql.lisp to
311         access the internals of C structures. This adds a bit of overhead,
312         but completely separates the lisp code from trying to keep up
313         with the continually changing internal C structure of mysql.
314         All tests in the test suite executed correctly with this change.
315
316 31 Aug 2009  Kevin Rosenberg <kevin@rosenberg.net>
317         * Version 4.0.6
318         * sql/database.lisp: Fix syntax on process-lock (thanks to
319         Stian Sletner)
320         * db-mysql/mysql-sql.lisp: Allow use of database parameter
321         in database-list function (thanks to Michael Pheasant)
322         * sql/oodml.lisp: Allow NULL values for floating-point fields
323         (thanks to Jan Rychter)
324
325 02 Jun 2009  Kevin Rosenberg <kevin@rosenberg.net>
326         * Version 4.0.5
327         * sql/database.lisp: Add process-lock for deleting database from
328         a pool (thanks to Ralf Mattes).
329
330 25 Feb 2008  Kevin Rosenberg <kevin@rosenberg.net>
331         * Version 4.0.4
332         * sql/expressions.lisp: Remove stray form (thanks to Samuel Ward)
333
334 12 Dec 2007  Kevin Rosenberg <kevin@rosenberg.net>
335         * sql/expressions.lisp: Bind *in-subselect* when outputting
336         selections (patch from unknown source).
337         
338 11 Dec 2007  Kevin Rosenberg <kevin@rosenberg.net>
339         * Version 4.0.3
340         * sql/metaclasses.lisp: Unify base-table processing by extracting 
341         the correct code from initialize-instance :around into the helper
342         function set-view-table-slot. Call that function also in
343         reinitialize-instance :around replacing erroneous code discovered
344         by Josh Feinstein.
345         
346 17 Nov 2007  Kevin Rosenberg <kevin@rosenberg.net>
347         * BUGS: Add note about benefit of using configure file to create
348         Makefiles (suggestion from Joe Corneli)
349         
350 22 Oct 2007  Kevin Rosenberg <kevin@rosenberg.net>
351         * Version 4.0.2
352         * db-postgresql/postgresql-sql.lisp: Patch from Gabriele Favalessa based on
353         Andrew Golding suggestion for more informative :error-id slot.
354         
355 17 Sep 2007  Kevin Rosenberg <kevin@rosenberg.net>
356         * Version 4.0.1
357         * db-mysql/mysql-sql.lisp: Convert query to uffi cstring (thanks to
358         Albert Krewinkel).
359         * doc/Makefile, doc/html.xsl: Change output encoding from ISO-8859-1 to UTF-8
360         
361 14 Sep 2007  Kevin Rosenberg <kevin@rosenberg.net>
362         * Version 4.0.0: Major version increase to warn of potential
363         backwards incompatibility.
364         * NEWS: Document potentional backward incompatible changes
365         * db-mysql/mysql-sql.lisp: Changes session SQL mode to ANSI immediately
366         after connecting. This may break compatibility with some applications
367         who are using non-ANSI features with MySQL. This change is required to
368         properly support view-classes using a string as their :base-table
369         attribute. This allows users to specify the case of table names. 
370         This is feature is even more essential for MySQL itself since MySQL
371         uses case-sensitive table names. Use connection-based database-create
372         and database-destroy rather than trying to invoke command-line mysql 
373         utility. Remove automatic upcasing of strings from list-indices. 
374         * db-postgresql/postgresql-sql.lisp: Use connection-based 
375         database-create and database-destroy rather than trying to invoke
376         command-line utilities.
377         * db-postgresql-socket/postgresql-socket-sql.lisp: Use
378         database-execute-command rather than execute-command for
379         database-{create,destroy}. Connect to postgres database
380         rather than template1 for those database creation/deletion.
381         * sql/metaclasses.lisp: Store the string value of :base-table if a 
382         string is provided. Perform sql-escape at time of view-table name
383         creation.
384         * tests/test-init.lisp: Use "ej_join" as a string, rather than a 
385         symbol, since "ej_join" is specified as :base-table. Clear the
386         expression output-cache in case the code for generating sql output
387         has changed.
388         * test/test-oodml.lisp: whitespace fix
389         * sql/ooddl.lisp: Use quoted string for primary key constraint if
390         table name is specified as a string.
391         * sql/oodml.lisp: Don't convert a string view-table name to database's 
392         default case.
393         * sql/expressions.lisp: Properly handle table and attribute identifiers
394         when they are a string. Do not change case of symbols to match database
395         default case.
396         * sql/operations.lisp: Change multiword symbols to upper case.
397         * sql/fddl.lisp: Quote base-table if a string to preserve case
398         for drop-table and create-table.
399         * tests/test-syntax.lisp: Add tests of low-level string attribute
400         identifiers.
401         
402 20 Jul 2007  Kevin Rosenberg <kevin@rosenberg.net>
403         * Version 3.8.6
404         * db-oracle/oracle-loader.lisp: Rework use of ORACLE_HOME directory
405         (problem noted on clsql-devel by icardo Boccato Alves)
406         * sql/pool.lisp: Remove incorrect keyword
407         * sql/database.lisp: Rework WITH-DATABASE to not make the database the
408         default database (reported by Saurabh Nanda and Chaitanya Gupta)
409         * doc/ref-connect.lisp: Update the documentation to WITH-DATABASE to
410         emphasis that make-default has a default value of nil.
411         * sql/transaction.lisp: Adjust commit/rollback messages for Microsoft
412         SQL Server. (patch from Nathan Bird)
413         * sql/metaclasses.lisp: Use finalize-inheritance hack on SBCL because
414         of trouble with def-view-class compilations (patch from Nathan Bird)
415         
416 15 Jul 2007  Kevin Rosenberg <kevin@rosenberg.net>
417         * Version 3.8.5
418         * db-mysql/mysql-loader.lisp: Revert previous change since libmysql is
419         not dynamically loaded on Windows
420         
421 22 Jun 2007  Kevin Rosenberg <kevin@rosenberg.net>
422         * Version 3.8.4
423         * db-mysql/mysql-loader.lisp: Do not bother loading libmysqlclient since
424         that library is dymically linked to clsql-mysql library. Thus, the mysql
425         library will be automatically loaded. This has only been tested on Linux,
426         thus far.
427
428 29 May 2007  Kevin Rosenberg <kevin@rosenberg.net>
429         * tests/test-fddl.lisp: Add :order-by for :fddl/big/1 as
430         reported by Ricardo Boccato Alves
431
432 02 May 2007  Kevin Rosenberg <kevin@rosenberg.net>
433         * sql/database.lisp: Add ability of WITH-DATABASE to return
434         multiple values (patch from Liam Healy)
435         
436 25 Apr 2007  Kevin Rosenberg <kevin@rosenberg.net>
437         * Version 3.8.3
438         * doc/connect.xml: variable description fix by Liam Healy
439         * db-sqlite3/sqlite3-api.lisp, uffi/clsql-uffi-loader.lisp:
440         Apply patches from Marcus Pierce to reduce load-time warnings
441         * sql/package.lisp: Export iso-timestring as requested by Kevin Blaisdell
442
443 23 Mar 2007  Kevin Rosenberg <kevin@rosenberg.net>
444         * Version 3.8.2
445         * sql/db-postgresql-socket-api.lisp: Change read-socket-sequence to
446         disable wide characters for crypt salt sequence on SBCL, based
447         on patch from Lars Nostdal.
448
449 26 Jan 2007  Kevin Rosenberg <kevin@rosenberg.net>
450         * Version 3.8.1
451         * sql/pool.lisp: Test pooled connection when popped from
452         the pool to ensure the connection still works. Currently, implemented
453         only for MySQL.
454
455 17 Jan 2007  Kevin Rosenberg <kevin@rosenberg.net>
456         * db-mysql/Makefile: Add potential mysql directories
457
458 31 Dec 2006  Kevin Rosenberg <kevin@rosenberg.net>
459         * sql/metaclasses.lisp: Remove usused saved-initargs
460         * clsql.asd: Also check ~/.clsql-init.lisp at load-time (usually used to
461         push search libraries)
462         
463 30 Dec 2006  Kevin Rosenberg <kevin@rosenberg.net>
464         * Version 3.8.0: BACKWARD INCOMPATABLE CHANGE!
465         * db-postgresql/postgresql-{api,loader,sql,package}.lisp:
466         Apply patch from Edi Weitz to avoid conflict with new Lispworks 5
467         POSTGRESQL package name. CLSQL's new package will be PGSQL, however
468         on non-Lispworks platforms, the nickname POSTGRESQL will still be
469         available. Applications directly using low-level POSTGRESQL package
470         are recommended to use the new PGSQL name.
471         * db-oracle/oracle-{api,sql}.lisp, sql/{expressions,loop-extension}.lisp,
472         Apply patch from Edi Weitz to reduce compiler warnings.
473         
474 28 Dec 2006  Kevin Rosenberg <kevin@rosenberg.net>
475         * Version 3.7.9
476         * sql/expressions.lisp: Commit patch from Edi Weitz to
477         use *default-database* for SQL-OUTPUT if no database is
478         explicitly passed to function.
479         * uffi/clsql-uffi-loader.lisp: Change load order to first try
480         plain name/type before attempting user-specified paths (patch
481         from Edi Weitz)
482         * uffi/ptrbits.c: New file to return number of bits in an pointer
483         * uffi/Makefile: use intbits to name .so file based on bit size.
484         Build both 32-bit and 64-bit libraries on 64-bit platform.
485         
486 30 Nov 2006  Kevin Rosenberg <kevin@rosenberg.net>
487         * Version 3.7.8
488         * db-sqlite3/sqlite3-sql.lisp: Commit patch from Edi Weitz fixing
489         error display
490
491 16 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
492         * Version 3.7.7
493         * db-postgresql/postgresql-sql.lisp: Remove 
494         uffi:convert-foreign-to-native wrapper since using cstring for
495         PQresultErrorField
496
497 16 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
498         * Version 3.7.6
499         * db-postgresql/postgresql-api.lisp: Fix UFFI return type for
500         PQresultErrorField foreign function.
501
502 16 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
503         * Version 3.7.5
504         * doc/intro.xml: Update supported platforms.
505         * db-postgresql/postgresql-{package,api,sql}.lisp: Apply
506         changes from Andew Golding to use a more-specific error code
507         from PostgreSQL than the generic fatal error code of the result set.
508
509 03 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
510         * sql/syntax.lisp: Commit patch from Marcus Pearce to improve
511         readtable modifications
512
513 02 Oct 2006  Kevin Rosenberg <kevin@rosenberg.net>
514         * sql/syntax.lisp: Check that original reader syntax functions
515         stored before trying to restore them.
516         
517 20 Sep 2006  Kevin Rosenberg <kevin@rosenberg.net>
518         * sql/syntax.lisp: Apply patch from Marcus Pearce to correctly
519         display sql reader syntax.
520
521 06 Sep 2006  Kevin Rosenberg <kevin@rosenberg.net>
522         * uffi/clsql-uffi-loader.lisp, db-mysql/mysql-loader.lisp: Change from using *features*
523         to decide on 64-bit platform and check size of most-positive-fixnum instead.
524         Needed to support clisp amd64.
525
526 03 Sep 2006  Kevin Rosenberg <kevin@rosenberg.net>
527         * Version 3.7.1
528         * sql/metaclasses.lisp: Rework slot type's to be more AMOP
529         compatibile. Add warning for a metaclass condition that should
530         not occur.
531         * sql/time.lisp: Fixed symbol case inconsistency causing problem
532         in AllegroCL's modern lisp. First sign of bug noted by
533         Joel Reymond on clsql-devel.
534         * clsql.asd: Make time.lisp depend on utils.lisp
535
536 31 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
537         * db-mysql/mysql-loader.lisp: Apply patch from Marcus Pearce to push 
538         *library-file-dir* to CLSQL's library path.
539
540 30 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
541         * Version 3.7.0: New platforms supported: SBCL/Win32, CLISP/Win32, CLISP/Cygwin,
542         CLISP/Linux x86, CLISP/Linux amd64, OpenMCL amd64. CLISP support requires the
543         latest development versions of CLISP, cffi, and cffi-uffi-compat packages.
544         * Makefile.common: Add OS detection
545         * uffi/make.sh, db-mysql/make.sh: Remove files
546         * uffi/Makefile, db-mysql/Makefile: Add support for cygwin compilation.
547         Refactor to remove need to make.sh shell scripts. 
548         * clsql.asd: Add support for loop extensions for clisp. Support clisp via cffi.
549         * sql/loop-extension.lisp: Define loop-record-iteration-path in CLSQL-SYS 
550         package rather than CL-USER. Add support for ansi-loop on clisp. 
551         * sql/ansi-loop.lisp: New file to support iteration on clisp. 
552         * db-mysql/mysql-api.lisp: Remove old mysql C API functions that no
553         longer exist in the mysql client library.
554         * doc/ref-fdml.lisp: Correct default field-type.
555         * sql/expressions.lisp: Use database-output-as-type if value exists for boolean output.
556         Fixed bug with noted with MySQL 5.0.24 and boolean values.
557         
558 28 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
559         * Version 3.6.7
560         * sql/oodml.lisp: Remove high debugging level declaration
561
562 14 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
563         * Version 3.6.6
564         * sql/generic-postgresql.lisp: Fix assumption that postgres user id
565         is always 1. Fixes problem noted with PostgreSQL 8.1.
566
567 12 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
568         * Version 3.6.5
569         * sql/generic-postgresql.lisp: Add slot for has-table-pg_roles to
570         lazily cache if pg_roles tables exist. Selectively use SQL from
571         Joel's previous patch if pg_roles table exists. Should now work
572         with both postgresql 7.4 and 8.x.
573         
574 12 Aug 2006  Kevin Rosenberg <kevin@rosenberg.net>
575         * Version 3.6.4
576         * clsql.asd: Add support for c:\etc\clsql-init.lisp as possible
577         local initialization file
578         * db-mysql/mysql-loader.lisp: Remove former method of using pathnames
579         as name candidates.
580         * db-odbc/odbc-api.lisp: Work-around Allegro/Windows FFI bug
581         that generates incorrect integer return type
582         * sql/generic-postgresql.lisp: Revert patch from Joel Reymont since
583         it fails on versions of postgresql that lack the pg_role table
584         
585 07 Jul 2006  Kevin Rosenberg <kevin@rosenberg.net>
586         * Version 3.6.3
587         * sql/transactions.lisp: Important typo fix from Alexey Antipov
588         for database-start-transaction
589         
590 04 Jul 2006  Kevin Rosenberg <kevin@rosenberg.net>
591         * Version 3.6.2
592         * db-postgresql/postgresql-sql.lisp: Apply patch from Vladimir Sekissov
593         to close connection when failing to connect to database.
594         * sql/generic-postgresql.lisp: Apply patch from Joel Reymont
595         to avoid dropping system views.
596         * sql/oodml.lisp: Apply patch from Joel Reymont to avoid listify
597         a nil value [patch sponsored by Flektor]
598         * clsql-uffi.asd, uffi/make.sh: Patch from Richard Kreuter
599         for netbsd compilation
600         
601 15 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
602         * doc/ref-ooddl.xml: Add documentation for :db-reader and :db-writer
603         slots for def-view-class macro [as reported missing by Thomas Fischbacher].
604         
605 09 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
606         * db-postgresql-socket/postgresql-socket-api.lisp:
607         Apply patch from Marko Kocic adding the socket creation
608         function needed for CLISP.
609
610 08 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
611         * Version: 3.6.0 (requires UFFI v1.5.11 or greater)
612         * db-oracle/metaclasses.lisp: Patch from James Bielman for
613         checking slot constraints.
614         * db-oracle/oracle-{api,sql}.lisp: Avoid dead pointers on loading
615         saved openmcl images (based on patch from James Bielman)
616
617 06 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
618         * doc/ref-fdml.xml: Documentation patch from Marcus Pearce for limit keyword
619         
620 03 May 2006  Kevin Rosenberg <kevin@rosenberg.net>
621         * Version 3.5.7
622         * sql/time.lisp: Apply patch from Aleksandar Bakic to extended
623         duration parsing and unparsing to include year and month.
624         * clsql-uffi.asd, uffi/clsql-uffi-loader.lisp: Apply patch from Nathan Bird
625         improving library search on Windows platform.
626         * doc/ref-fdml.xml, /doc/TODO, tests/test-fdml.lisp, tests/test-init.lisp:
627         Apply patch from Marcus Pearce documenting and testing :limit and :offset for SELECT
628
629 20 Mar 2006  Kevin Rosenberg <kevin@rosenberg.net>
630         * Version 3.5.6
631         * clsql-postgresql-socket.asd, 
632         * db-postgresql-socket/postgresql-socket-package.lisp: 
633         Use the cl-md5 package on all platforms. Based on report 
634         from Alan Caulkins.
635         
636 09 Mar 2006  Kevin Rosenberg <kevin@rosenberg.net>
637         * Version 3.5.5
638         * uffi/make.sh, db-mysql/make.sh: Add GNU uname
639         
640 28 Feb 2006  Kevin Rosenberg <kevin@rosenberg.net>
641         * Version 3.5.4
642         * sql/metaclasses.lisp: Apply patch from Friedrich Dominicus to
643         fix accessor for new versions of SBCL
644         * db-oracle/oracle-sql.lisp: Apply patch from James Bielman
645         to improving parsing of time.
646         * db-db2/db2-constants.lisp: Change NULL_HANDLE has suggested
647         by Harold Lee.
648         * db-oracle/oracle-dbi.lisp: Add support for SQL BIT type
649         as noted by Russ Tyndall.
650         
651 16 Jan 2006  Kevin Rosenberg <kevin@rosenberg.net>
652         * Version 3.5.3
653         * sql/time.lisp: Commit patch from Aleksandar Bakic
654         to properly handle destructive flag
655         * db-postgresql-socket/postgresql-socket-api.lisp: Apply patch
656         from Steven Harris for socket files with SBCL.
657         * sql/pool.lisp: Apply patch from Vladimir Sekissov so that
658         new connections added to the pool do not become the *default-database*
659         * sql/connect.lisp: Optionally set *default-database* for pooled
660         connection when make-default is generalized true.
661         
662 23 Dec 2005  Kevin Rosenberg <kevin@rosenberg.net>
663         * Version 3.5.1
664         * sql/expressions.lisp: Ensure table names are properly escaped
665         before comparing -- fixes bug reported by Asbjørn Bjørnstad
666         on CLSQL-Devel.
667
668 02 Dec 2005  Kevin Rosenberg <kevin@rosenberg.net>
669         * sql/generic-postgresql.lisp: improved decoding of table attribute
670           parameters [from Vladimir Sekissov]
671         * sql/metaclasses.lisp: check that metaclass is standard-db-class or
672           it's subclass to prevent adding standard-db-object to supers if
673           somebody in the path has it already when metaclass inherited from
674           standard-db-class. [from Vladimir Sekissov]
675         
676 26 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
677         * Version 3.5.0
678         * tests/test-init.lisp, tests/test-fddl.lisp, tests/test-fdml.lisp, 
679         * db-odbc/odbc-api.lisp, db-odbc/odbc-ff-interface.lisp,
680         * db-odbc/odbc-package.lisp, db-odbc/odbc-constants.lisp
681         * db-odbc/odbc-dbi.lisp, db-odbc/odbc-sql.lisp
682         * sql/fddl.lisp, sql/generic-odbc.lisp, sql/db-interface.lisp
683         * sql/transaction.lisp, sql/package.lisp, sql/time.lisp
684         Commit patch from Dominic Robinson providing support for 
685         Microsoft SQL Server
686         * doc/csql.lisp: Fix typo in slot name
687         
688 24 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
689         * Version 3.4.7
690         * sql/time.lisp: Commit patch from Aleksandar Bakic for
691         correct handling of decode-time usec value  
692         * clsql-mysql.asd: Commit patch from Harald Hanche-Olsen to
693         correct the name of the shared library file.
694         
695 16 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
696         * version 3.4.6
697         * sql/metaclasses.lisp: Avoid calling change-class on
698         effective-slot-definitions on sbcl to conform to sbcl 0.9.6.38
699         changes.
700         
701 15 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
702         * Version 3.4.5
703         * sql/expressions.lisp: Patch from James Biel to add subselects
704
705 14 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
706         * Version 3.4.4 [ Requires UFFI 1.5.7+] 
707         * db-oracle/oracle-{api,sql}.lisp: Patch from James Biel
708         to fix lifetime of foreign strings for Oracle calls
709
710 13 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
711         * Version 3.4.3
712         * db-oracle/oracle-{api,sql}.lisp: Patch from James Biel
713         to improve performance
714         
715 12 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
716         * Version 3.4.2
717         * clsql-uffi.asd: Patch from James Biel improving loading
718         * db-oracle/oracle-{api,sql}.lisp: Patch from James Biel
719         to support 64-bit lisps
720         
721 12 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
722         * Version 3.4.1
723         * sql/expressions.lisp: Escape numbers to SQL strings
724         at expression level.
725         
726 11 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
727         * Version 3.4: Add MySQL 5 support
728         * db-mysql/mysql-client-info.lisp: Recognize MySQL 5
729         * db-mysql/mysql-sql.lisp: Add support for views in MySQL 5
730         * doc/mysql-macosx-notes.txt: New document from Martin Brooks
731         
732 7 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
733         * src/time.lisp: Apply patch from Aleksandar Bakic for ROLL
734         function.
735         * BUGS: Added report for update-object-joins by Aleksandar Bakic
736         
737 4 Nov 2005  Kevin Rosenberg <kevin@rosenberg.net>
738         * Version 3.3.4 [UFFI >= 1.5.5 needed]
739         * db-odbc/odbc-api.lisp: Apply patch from Yaroslav Kavenchuk
740         to add missing #\' character.
741         * clsql.asd: Add support for CLSQLINIT environmental variable,
742         based on patch from Yaroslav Kavenchcuk. New version of UFFI
743         required.
744         
745 30 Oct 2005  Kevin Rosenberg <kevin@rosenberg.net>
746         * Version 3.3.3
747         * sql/oodml.lisp: Apply patch from Drew Crampsie to fix
748         update-objects-joins when using the :target-slot attribute
749         
750 26 Oct 2005  Kevin Rosenberg <kevin@rosenberg.net>
751         * Version 3.3.2
752         * sql/expressions.lisp: Avoid parenthesis on multiple group-by fields
753         as noted by Harald Hanche-Olsen.
754         * tests/test-syntax.lisp: Add test for multiple field group-by
755         
756 25 Oct 2005  Kevin Rosenberg <kevin@rosenberg.net>
757         * Version 3.3.1
758         * sql/time.lisp: Commit patch from Alan Shields to
759         display escape string on wall-time display only when *print-escape*
760         is true.
761         
762 11 Oct 2005  Kevin Rosenberg <kevin@rosenberg.net>
763         * sql/metaclasses.lisp: Commit patch from Will to
764         properly set db-reader slot in effective-slot-definition
765         * sql/expressions.lisp: Commit patch from Alan Shields
766         adding make-load-form for sql-relational-exp
767         * sql/generic-postgresql.lisp: Commit patch from Aleksandar Bakic
768         adding support for new NUMBER type
769         
770 17 Sep 2005  Kevin Rosenberg <kevin@rosenberg.net>
771         * Version 3.3.0
772         * sql/time.lisp: Apply patch from Alan Shields adding DATE type.
773         * doc/ref-ooddl.xml: Documentation of new type
774         * notes/add-type-hints.txt: New file from Alan Shields
775         * sql/fddl.lisp: Add owner keyword to drop-table as suggested
776         by Francis Leboutte
777         * db-postgresql-socket/postgresql-socket-sql.lisp: Fix database-probe
778         as noted by Francis Leboutte. Similar fix applied to db-mysql and
779         db-postgresql.
780         * sql/expressions.lisp: Allow string table names for output as
781         contributed by Francis Leboutte.
782         * examples/clsql-tutorial.lisp: Support :postgresql-socket as noted 
783         by Francis Leboutte
784         
785 08 Sep 2005  Kevin Rosenberg <kevin@rosenberg.net>
786         * Version 3.2.4
787         * doc/into.xml: Change download from ftp to http protocol
788
789 08 Sep 2005  Kevin Rosenberg <kevin@rosenberg.net>
790         * Version 3.2.3
791         * db-oracle/oracle-sql.lisp: Correction for v3.2.2 changes by
792         Edi Weitz
793
794 08 Sep 2005  Kevin Rosenberg <kevin@rosenberg.net>
795         * Version 3.2.2
796         * db-oracle/oracle-sql.lisp: Add check for zero increment as
797         suggested by Edi Weitz. Add missing database-sequence-last function
798         as noted and tested by Edi Weitz. Ensure that UFFI buffer is freed
799         in handle-oci-error. Add unwind-protect to sql-stmt-exec. Free UFFI
800         stmthp object when query cursor is freed with OCI.
801
802 22 Aug 2005  Kevin Rosenberg <kevin@rosenberg.net>
803         * uffi/clsql-uffi-loader.lisp: Commit patch from astor@pvv.ntnu.no to
804         display search path when error occurs loading foreign library.
805         
806 05 Jul 2005  Kevin Rosenberg <kevin@rosenberg.net>
807         * Version 3.2.1
808         * doc/appendix.xml: Incorporate Edi Weitz's notes into documentation
809         with changes to support case-sensitive lisp implementations. Add
810         paragraph on using /etc/clsql-init.lisp site initialization file.
811         * clsql.asd: Load file /etc/clsql-init.lisp, if it
812         exists, after package is loaded to set site-specific configuration
813         
814 2005-06-24  Edi Weitz  <edi@agharta.de>
815         * sql/db-interface.lisp: Added new special variable
816         *FOREIGN-LIBRARY-SEARCH-PATHS* and function PUSH-LIBRARY-PATH to
817         manipulate it.
818         * sql/package.lisp: Export these.
819         * uffi/clsql-uffi-loader.lisp: Used new variable; changed order of
820         libs.
821         * db-mysql/mysql-loader.lisp: Changed order of libs.
822
823 09 Jun 2005 Kevin Rosenberg <kevin@rosenberg.net>
824         * Version 3.2.0: REQUIRES UFFI VERSION 1.4.38 OR HIGHER
825         * clsql-mysql.asd: Renamed clsql/mysql interface library from
826         mysql to clsql_mysql
827         * clsql-uffi.asd: Renamed clsql/uffi interface library from
828         mysql to clsql_uffi
829         * uffi/clsql_uffi.c: Renamed from uffi.c
830         * db-mysql/clsql_mysql.c: Renamed from mysql.c
831         * db-mysql/Makefile, db-mysql/Makefile.msvc, db-mysql/mysql-loader.lisp: Rename shared library
832         * uffi/Makefile, uffi/Makefile.msvc, uffi/uffi-loader.lisp: Rename shared library
833         * db-*/*-loader.lisp: Commit big patch from Edi Weitz to remove
834         absolute pathnames when searching for foreign libraries.
835         foreign library loading.
836         
837 07 Jun 2005 Kevin Rosenberg <kevin@rosenberg.net>
838         * Version 3.1.16
839         * db-mysql/mysql-api.lisp: Commit patch from Espen Wiborn
840         to support UTF-8 on sbcl unicode.
841         
842 18 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
843         * Version 3.1.15
844         * sql/time.lisp: Fix bug in roll that caused failure in test suite
845
846 17 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
847         * Version 3.1.14
848         * sql/oodml.lisp: Properly handle when db-writer is NIL
849
850 11 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
851         * sql/expressions.lisp: Avoid using simple-string declaration when
852         a non-simple string may be encountered. [issue noted by 
853         will@cesmail.net] Add a simple-string declaration for a local
854         string generated.
855         
856 06 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
857         * sql/oodml.lisp: Change db-writer and db-reader processing to accept
858         a symbol as well as function to serve as a function designator
859         [issue noted by will@cesmail.net]
860
861 05 May 2005 Kevin Rosenberg <kevin@rosenberg.net>
862         * Version 3.1.13
863         * sql/time.lisp: Fix error in submitted patch which caused error
864         in timestrings with 19 or less characters.
865         
866 27 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
867         * Version 3.1.12
868         * db-postgresql-socket/postgresql-api.lisp: Commit patch from Tim Howe
869         to fix read-socket-sequence on non-sb-unicode sbcl.
870         
871 26 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
872         * Version 3.1.12
873         * sql/time.lisp: Commit patch from Daniel Lowe which adds support
874         for fractional seconds which is required by PostgreSQL
875         * db-postgresql/postgresql-loader.lisp: Add library path for Windows
876         
877 25 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
878         * sql/csql.lisp: Update URL for "SQL for Web Dummies" [Sean Champ]
879         
880 24 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
881         * Version 3.1.11
882         * sql/syntax: Commit patch from Alan Shields to supress reader
883         macros when *read-supress* is T.
884         
885 13 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
886         * Version 3.1.10
887         * db-postgresql-socket/postgresql-socket-api.lisp: Commit patch
888         from Janis Dzerins to support unicode on SBCL
889         * sql/syntax: Commit patch from Alan Shields to improve reporting
890         of invalid syntax statements.
891         
892 06 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
893         * Version 3.1.9
894         * db-mysql/mysql-sql.lisp: Add port to connection specification
895         based on patch from Dave Watson
896         * doc/appendix.xml: Document MySQL port parameter to connection spec
897
898 03 Apr 2005 Kevin Rosenberg <kevin@rosenberg.net>
899         * Version 3.1.8
900         * sql/time.lisp: Patch from Keith James for parsing ISO-8601 timestamps
901         
902 18 Mar 2005 Kevin Rosenberg <kevin@rosenberg.net>
903         * sql/oodml.lisp: Add missing database argument [Patch from
904         Alan Caulkins]
905         
906 03 Mar 2005 Kevin Rosenberg <kevin@rosenberg.net>
907         * sql/oodml.lisp: Improve database priority in 
908         update-records-from-instance [Patch from Walter C. Pelissero]
909         
910 17 Feb 2005 Kevin Rosenberg <kevin@rosenberg.net>
911         * Version 3.1.7
912         * sql/package.lisp: Export database-reconnect from clsql-sys
913
914 08 Feb 2005 Kevin Rosenberg <kevin@rosenberg.net>
915         * sql/oodml.lisp: Use explicit database in fault-join-target-slot
916         [Patch from Walter Pelissero]
917         
918 29 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
919         * db-postgresql/postgresql-loader.lisp: Add additional
920         directories to Fink on darwin [patch from Cyrus Harmon].
921         
922 29 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
923         * Version 3.1.6
924         * sql/oodml.lisp: Clear view instance cache when delete-instance-records
925         is invoked [suggested by Alan Shutko].
926         * uffi/clsql-uffi-loader.lisp: Improvements for loading with SBCL X86-64
927         * sql/metaclasses.lisp: Don't change case of a :base-table string supplied
928         to def-view-class [fix suggested by Fred Gilham].
929         
930 25 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
931         * tests/*.lisp: Change Vladamir to Vladimir per Cyrus Harmon's
932         suggestion.
933         * sql/utils.lisp: Fix unnecessary consing noted by Fred Gilham.
934         * doc/*.xml: Fix spelling of Vladimir
935         
936 24 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
937         * doc/bookinfo.xml, doc/csql.xml, doc/intro.xml: Update links
938         now that LispWorks is an independant company [noted by
939         Martin Thornquist]
940         
941 22 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
942         * db-sqlite/sqlite-sql.lisp, db-sqlite3/sqlite3-sql.lisp:
943         Better support for 64 bit environments
944
945 05 Jan 2005 Kevin Rosenberg <kevin@rosenberg.net>
946         * Version 3.1.5
947         * sql/metaclass.lisp: Make t the default value of :set
948         [noted by Cyrus Harmon]
949
950 28 Dec 2004 Kevin Rosenberg <kevin@rosenberg.net>
951         * Version 3.1.4
952         * uffi/clsql-uffi.lisp: Add support for unsigned integers
953         * db-mysql/mysql-sql.lisp: Add support for detecting/marking
954         unsigned integers. Apply patch from Yannick Gingras to
955         implement database-sequence-last.
956         
957 26 Dec 2004 Kevin Rosenberg <kevin@rosenberg.net>
958         * doc/ref-fdml.lisp: Fix variable tag name to varname
959         [noted by Eduardo Munoz]
960         * db-mysql/mysql-loader.lisp: Handle library paths for 64-bit systems
961         
962 06 Dec 2004 Kevin Rosenberg <kevin@rosenberg.net>
963         * Version 3.1.2
964         * sql/ooddl.lisp: Accept patch from Klaus Harbo for
965         update-object-joins.
966         * sql/metaclass.lisp: Remove unnecssary (and runtime error
967         causing) change-class invocation when running on CLISP.
968         * db-mysql/mysql-api.lisp: Commit patch from Paul Werkowski
969         to fix structure name.
970         * sql/database.lisp: More specific error message with trying
971         to use a database value of NIL.
972         * sql/expressions.lisp: Accept a string for the table name
973         in (sql-output sql-delete database) [suggested by Ed Symanzik].
974         
975 11 Nov 2004 Kevin Rosenberg <kevin@rosenberg.net>
976         * Version 3.1.1
977         * sql/generic-postgresql.lisp: Commit patch from Chris Capel to
978         ignore columns which have been dropped.
979         * clsql-postgresql-socket.asd, db-postgresql-socket/postgresql-socket-package.lisp:
980         Use sb-md5 package on SBCL, recommended by Chris Capel
981         
982 09 Nov 2004 Kevin Rosenberg <kevin@rosenberg.net>
983         * Version 3.1.0 released: New SQLite3 backend by Aurelio Bignoli
984         * doc/appendix.xml: Document SQLITE3 backend, patch by Aurelio Bignoli
985         * sql/operations.lisp: Add lower and upper SQL functions [Daniel Lowe].
986         
987 08 Nov 2004 Kevin Rosenberg <kevin@rosenberg.net>
988         * sql/expressions.lisp: Fix slot name [thanks to Daniel Lowe]
989
990 31 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
991         * clsql-sqlite3, db-sqlite3/*: NEW BACKEND
992         contributed by Aurelio Bignoli
993
994 23 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
995         * sql/oodml.lisp: Commit patch from Walter Pelis
996         to use an object's database for a select on its slot.
997         
998 20 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
999         * uffi/uffi.c, uffi/clsql-uffi.lisp: Commit patch from
1000         Aurelio Bignoli to fix negative 64-bit integers
1001         
1002 07 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
1003         * db-mysql/mysql.c: Fix parameters in bind_param call
1004
1005 07 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
1006         * uffi/clsql-uffi.lisp: Add support for :blob result-type
1007         * db-mysql/mysql-sql.lisp: Add support for :blob
1008         result-type
1009         
1010 04 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
1011         * db-mysql/mysql-sql.lisp, db-db2/db2-sql.lisp: Add
1012         missing quotes for types in code that is still in development
1013         (thanks to Joerg Hoehle)
1014         
1015 03 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
1016         * Version 3.0.8 released
1017         * db-sqlite/sqlite-*.lisp: Apply patch from
1018         Aurelio Bignoli with improvements
1019         
1020 01 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
1021         * multiple: Apply patch from Joerg Hoehle with multiple
1022         improvements.
1023         
1024 01 Oct 2004 Kevin Rosenberg <kevin@rosenberg.net>
1025         * Version 3.0.7 released
1026         * sql/oodml.lisp, sql/package.lisp, db-mysql/mysql-objects.lisp:
1027         Add support for mediumint.
1028         * sql/metaclass.lisp: Rework CLISP MOP handling
1029         * sql/ooddl.lisp: Work-around to have CLISP finalize standard-db-class
1030         
1031 28 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
1032         * sql/metaclass.lisp: Support CLISP's attribute name
1033         for the type field in direct class slots
1034         
1035 27 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
1036         * Version 3.0.6 released
1037         * BUGS: New file. Document suspected SIGPIPE
1038         interaction between SBCL and libpq used in
1039         postgresql backend.
1040         * doc/ref-fdml.lisp: Document the :caching and :refresh
1041         keywords of the SELECT function.
1042         * doc/ref-ooddml.lisp: Document the new *default-caching*
1043         variable.
1044         * sql/package.lisp: Export *default-caching*
1045         * sql/oodml.lisp: Use *default-caching* to 
1046         control default caching behavior.
1047         
1048 21 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
1049         * Version 3.0.5 release
1050         * doc/appendix.xml: Add note about loading Oracle8 version
1051         * db-oracle/oracle-loader.lisp: Support Oracle8 based on
1052         data from David Young.
1053
1054 10 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
1055         * doc/Makefile, doc/catalog-darwin.xml: Apply
1056         patch from Cyrus Harmon for building docs on Mac OS X
1057         * sql/package.lisp: Add new (pre-release) clisp MOP package     
1058         
1059 09 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
1060         * Version 3.0.4 Release
1061         * multiple: Remove superfluous quotes in UFFI def-type
1062         and def-foreign-type forms.
1063         
1064 07 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
1065         * Version 3.0.3 Release
1066         * db-postgresql-socket/postgresql-socket-api.lisp: Commit patch
1067         from Tagore Smith to call force-output after sending authentication
1068         * db-odbc/odbc-api.lisp: Move ODBC v3 conversons
1069         * db-odbc/odbc-sql.lisp: Load mysql or postgresql package when connecting
1070         to a database of that type so that functions that indicate capabilities of
1071         database are available.
1072         
1073 02 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
1074         * db-odbc/odbc-api.lisp: More conversions to ODBC v3
1075         
1076 02 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
1077         * Version 3.0.2 Release
1078         * TODO: Add note about ODBC on Windows
1079         * db-odbc/odbc-loader.lisp: Add /winnt/system32/ to
1080         search directories
1081         * db-odbc/odbc-ff-interface.lisp: Change the return type 
1082         of SQLSetEnvAttr to :short
1083         
1084 02 Sep 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1085         * examples/clsql-tutorial.lisp: added missing initarg for the COMPANYID
1086         slot of the employee View Class definition [reported by Franz Deuzer]. 
1087
1088 01 Sep 2004 Kevin Rosenberg <kevin@rosenberg.net>
1089         * Version 3.0.1 Release
1090         * tests/test-init.lisp: Add second join class to employee-address
1091         to test a class with two join slots.
1092         * sql/oodml.lisp: Fix find-all function for a class with multiple
1093         join slots
1094         * TODO: Remove need to test/fix multiple join classes
1095         
1096 27 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
1097         * db-mysql/Makefile, db-mysql/mysql-loader.lisp: accept patch
1098         from Jon Buffington for file locations on Darwin.
1099         
1100 17 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
1101         * sql/db-interface.lisp: Improve messages when functions
1102         are passed a database object, but the method is not specialized
1103         for that database type.
1104         * sql/metaclasses.lisp: Fix inline declaration (reported by
1105         Cyrus Harmon)
1106         
1107 14 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
1108         * TODO: Add bug report about SQL generation with a table
1109         containing two join slots.
1110         * sql/oodml.lisp: Add optional size to VARCHAR type
1111         
1112 3 Aug 2004 Kevin Rosenberg <kevin@rosenberg.net>
1113         * Version 3.0.0 Release
1114         * sql/expressions.lisp: Change declaration that
1115         caused error on openmcl
1116         * db-aodbc/aodbc-sql.lisp: Fix storage location
1117         of odbc connection. Specialize database-query since
1118         dbi's :types keyword is different than generic-odbc's
1119         :result-types keyword
1120         * sql/db-interface.lisp: Add warnings for methods
1121         not specialized by a db backends
1122         * tests/test-fddl.lisp: Fix case of symbols to support
1123         case-sensitive Allegro 
1124         * db-oracle/oracle-sql.lisp: Rework errbuf in handle-oci-error
1125         * tests/test-init.lisp: Note that odbc driver for postgresql
1126         doesn't properly handle table ownership
1127         * LATEST-TEST-RESULTS: update with version 3.0.0
1128         
1129 1 Aug 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1130         * sql/expressions.lisp: conditionalise escaping of backslash in 
1131         generated SQL strings on backend. 
1132         * tests/test-fdml.lisp: test for escaping of backslash. 
1133         * sql/oodml.lisp: minor tidying in FIND-ALL. 
1134
1135 26 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1136         * NEWS: Initial 3.0 announcement draft
1137         * README: Expand acknowledgements of incorporated projects
1138         * CONTRIBUTORS: Further document Marcus Pearce contributions
1139         
1140 23 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1141         * sql/oodml.lisp: add DATABASE-OUTPUT-SQL-AS-TYPE method specialisation
1142         to print floats with the exponent markers removed. 
1143         * tests/test-oodml.lisp: add tests for updating records with floats. 
1144
1145 22 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1146         * db-oracle/oracle-sql.lisp: enable :OWNER :ALL in DATABASE-LIST-* for 
1147         CommonSQL compatibility. 
1148         * tests/test-init.lisp: skip test :FDDL/TABLE/6 on Oracle since 
1149         this column constraint syntax is not supported. 
1150         * tests/test-fddl.lisp: change column indexed in test :FDDL/INDEXES/2
1151         from EMPLID to LAST_NAME since Oracle complains that EMPLID is already 
1152         indexed. 
1153
1154 17 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1155         * doc/ref-fdml.xml: document CACHE-TABLE-QUERIES. 
1156         * tests/test-fdml.xml: add test for CACHE-TABLE-QUERIES. 
1157         * doc/ref-ooddl.xml: minor changes to syntax and examples entries 
1158         for uniformity. 
1159         * doc/ref-oodml.xml: add examples for OODML. 
1160         * sql/oodml.lisp: ensure SELECT passes on its REFRESH argument 
1161         to FIND-ALL. 
1162         * sql/metaclasses.lisp: update docstrings. 
1163         * tests/test-init.lisp: change :db-constraints for emplid to 
1164         (:not-null :unique) as a temporary test for multiple column constraints 
1165         in DEF-VIEW-CLASS. 
1166         * tests/test-oodml.lisp: add tests for *DB-AUTO-SYNC* and 
1167         return type of (SETF SLOT-VALUE-USING-CLASS). 
1168         * TODO, doc/TODO: remove items done. 
1169         * README: fix typo. 
1170         
1171 16 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1172         * sql/oodml.lisp: on Lispworks, use weak valued hash tables for 
1173         object caching. 
1174         * sql/expressions.lisp: Fix SQL generation for the symbol NIL. 
1175
1176 16 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1177         * sql/expressions.lisp: reactivate caching of generated SQL strings. 
1178         Move methods for DATABASE-OUTPUT-SQL, OUTPUT-SQL and SQL-HASH-KEY 
1179         here from sql/fdml.lisp. Rationalise behaviour of SQL-OUTPUT, 
1180         OUTPUT-SQL and DATABASE-OUTPUT-SQL. 
1181         * sql/fdml.lisp: remove disabled method ADD-STORAGE-CLASS. Move 
1182         methods for DATABASE-OUTPUT-SQL, OUTPUT-SQL and SQL-HASH-KEY to 
1183         sql/expressions.lisp. 
1184         * sql/ooddl.lisp: replace call to DATABASE-OUTPUT-SQL in 
1185         DATABASE-PKEY-CONSTRAINT with call to SQL-OUTPUT. 
1186         * sql/generics.lisp: add docstrings. 
1187
1188 15 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1189         * Version 2.11.16
1190         * db-oracle/oracle-sql.lisp: Remove OpenMCL specific
1191         code in favor of fixing UFFI with James Bielman's patch
1192         
1193 14 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1194         * Version 2.11.15
1195         * db-oracle/oracle-sql.lisp: Apply patch for OpenMCL/OSX
1196         from James Bielman
1197         
1198 14 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1199         * README, INSTALL: update URLs. Minor updates to descriptions. 
1200         * tests/README: remove stuff about editing contexts. 
1201
1202 12 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1203         * db-oracle/oracle-objects.lisp: Change *default-varchar-length* to 
1204         *default-string-length*
1205         
1206 12 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1207         * tests/test-syntax.lisp, tests/test-fdml.lisp: add tests for escaping 
1208         of single quotes. 
1209         * tests/test-fddl.lisp: add tests for column and table constraints 
1210         in CREATE-TABLE. Add test for OWNER keyword parameter to 
1211         LIST-TABLES (assuming same underlying machinery in other FDDL 
1212         functions). 
1213         * tests/test-init.lisp: restrict above test to postgresql and oracle. 
1214         
1215 12 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1216         * db-sqlite/sqlite-sql.lisp: Fix condition as reported by Aurelio 
1217         Bignoli.
1218
1219 11 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1220         * sql/oodml.lisp, sql/package.lisp, doc/ref-ooddl.lisp, db-mysql/mysql-objects.lisp: Add tinyint type
1221         
1222 10 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1223         * Version 2.11.14
1224         * doc/*.xml: documentation additionals and fixes so
1225         that docbook passes xmllint.
1226         
1227 9 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1228         * Version 2.11.13
1229         * sql/fdml.lisp: Apply patch from Kim Minh Kaplan 
1230         to change escaping of single quotes. Mild optimizations
1231         for escaped string output.
1232         * doc/ref-ooddl.lisp: documentation additions
1233         * doc/ref-oodml.lisp: Add purpose to functions
1234         * TODO: Add need to test single quote escaping
1235         
1236 7 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1237         * doc/ref-ooddl.xml, doc-ref-oodml.xml: documentation additions
1238         * sql/ooddl.lisp: Added SMALLINT type
1239         * sql/generic-postgresql.lisp: Added INT2 as SMALLINT type
1240         * db-mysql/mysql-objects.lisp: Added SMALLINT type
1241         * sql/package.lisp: Export SMALLINT
1242         * sql/expressions.lisp: Add MYSQL's UNSIGNED and ZEROFILL as
1243         db-constraints
1244         
1245 6 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1246         * sql/expressions.lisp: add AUTO-INCREMENT and UNIQUE to the 
1247         recognised column constraints for CREATE-TABLE and the :DB-CONSTRAINTS 
1248         View Class slot option. 
1249         * sql/ooddl.lisp: fix bug preventing the :DB-CONSTRAINTS View Class 
1250         slot option accepting a list of constraints [reported by Travis Cross]. 
1251         * doc/ref-fddl.xml: add some examples of specifying column and 
1252         table constraints to the documentation for CREATE-TABLE. 
1253         * TODO: add note about adding tests for table/column constraints. Add 
1254         optimisation note about using cached attribute types in insert/update
1255         operations. 
1256         
1257 3 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1258         * doc/appendix.xml: add notes about idiosyncrasies/unsupported 
1259         features and so on the documentation for each backend. 
1260         * doc/TODO: remove items done. 
1261         * doc/ref-transaction.xml: add note in introduction about 
1262         autocommit mode as a difference from CommonSQL. 
1263         * doc/ref-syntax.xml: add notes about SQL syntax state functions 
1264         being macros in CLSQL. Add note about SQL operators which are 
1265         CLSQL extensions. 
1266
1267 2 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1268         * Version 2.11.12 released
1269         * doc/ref-recording.xml: document SQL I/O recording. 
1270         * doc/ref-prepared.xml: new file for documenting prepared statements. 
1271         * doc/clsql.xml: comment out include for large object and CLSQL-SYS 
1272         documentation. 
1273         * doc/ref-conditions.xml: complete documentation of condition system. 
1274         * doc/global-index.xml: add symbols from condition system and remove
1275         those from LOB and prepared statement APIs. 
1276         * doc/ref-fdml.xml: complete documentation of FDML.
1277         * doc/glossary.xml: add View Class. 
1278         * doc/TODO: remove items done. 
1279         * sql/conditions.lisp: make SQL-CONDITION a parent of SQL-ERROR. 
1280         * sql/package.lisp: remove FOR-EACH-ROW from exports list. Export 
1281         additional slot accessors for condition classes. 
1282
1283 1 Jul 2004 Kevin Rosenberg <kevin@rosenberg.net>
1284         * doc/ref-ooddl.lisp: Add documentation
1285         * doc/ooddl.lisp: Move *DEFAULT-VARCHAR-LENGTH* from oodml.lisp
1286         and rename to *DEFAULT-STRING-LENGTH*. Add docstring.
1287         * doc/oodml.lisp: Rename references to new name of
1288         *DEFAULT-STRING-LENGTH*
1289
1290 1 Jul 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1291         * doc/ref-transaction.xml: document transaction handling. 
1292         * sql/transaction.lisp: ensure that COMMIT, ROLLBACK and 
1293         START-TRANSACTION return NIL as per the CommonSQL spec. Modify 
1294         ADD-TRANSACTION-{ROLLBACK|COMMIT}-HOOK such that a database is 
1295         passed as a keyword argument defaulting to *DEFAULT-DATABASE*.
1296         Added docstrings. 
1297
1298 30 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk>
1299         * doc/ref-fdml.xml: document the FDML. 
1300         * doc/ref-fddl.xml: move documentation for TRUNCATE-DATABASE here. 
1301         * sql/ooddl.lisp: moved *default-varchar-length* to here from 
1302         oodml.lisp and renamed to *default-string-length*
1303         
1304 23 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1305         * sql/oodml.lisp: Add keyword :transactions to def-view-from-class
1306         to allow specifying transactionless table creation
1307         * doc/ref-oodml.lisp: Add new keyword to signature of 
1308         DEF-VIEW-FROM-CLASS     
1309         
1310 18 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1311         * Version 2.11.11
1312         * sql/expressions.lisp: when removing duplicate table identifiers 
1313         in the FROM clause of a query, check both table name and alias 
1314         are equivalent. 
1315         * sql/fdml.lisp: remove DESCRIBE-TABLE. 
1316         * sql/db-interface.lisp: remove generics DESCRIBE-TABLE and 
1317         DATABASE-DESCRIBE-TABLE. 
1318         * sql/package.lisp: remove DESCRIBE-TABLE, DATABASE-DESCRIBE-TABLE 
1319         and LIST-TABLE-INDEXES. 
1320         * sql/generic-postgresql.lisp: add reader conditional #+nil for 
1321         DATABASE-DESCRIBE-TABLE and comment about its uses for 
1322         re-implementing LIST-ATTRIBUTE-TYPES with a single SQL query 
1323         returning type info for all attributes. 
1324         Fix DATABASE-SEQUENCE-LAST. 
1325         * sql/fddl.lisp: remove LIST-TABLE-INDEXES and redefine 
1326         LIST-INDEXES with additional keyword parameter :ON. 
1327         * tests/test-fddl.lisp: replace LIST-TABLE-INDEXES in :fddl/index/3 
1328         with LIST-INDEXES (with :ON parameter). 
1329         * doc/global-index.xml: remove DESCRIBE-TABLE and LIST-TABLE-INDEXES. 
1330         * doc/ref-connect.xml: minor tidying. 
1331         * doc/ref-fddl.xml: document the FDDL. 
1332         * doc/TODO: removed items done. Moved note about transaction handling 
1333         from TODO to here. 
1334         * TODO: move note about transaction handling to doc/TODO. Added 
1335         optimization note about LIST-ATTRIBUTE-TYPES and LIST-INDEXES. 
1336         
1337 13 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1338         * Version 2.11.10
1339         * sql/syntax.lisp: updated docstrings. 
1340         * sql/package.lisp: exported DATABASE-NAME-FROM-SPEC from CLSQL 
1341         package.
1342         * sql/database.lisp: add docstrings for CREATE-DATABASE, 
1343         DESTROY-DATABASE, TRUNCATE-DATABASE and LIST-DATABASES. Replace 
1344         CLSQL-GENERIC-ERROR signalled in RECONNECT with SQL-CONNECTION-ERROR. 
1345         * doc/ref-syntax.xml, doc/global-index.xml: minor tidying. 
1346         * doc/ref-connect.xml: document connection/initialisation. 
1347         * doc/ref-fdml.xml: move TRUNCATE-DATABASE reference entry here. 
1348         * doc/TODO: remove items done. 
1349         * Makefile: add db-oracle to to SUBDIRS. 
1350
1351 13 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1352         * sql/oodml.lisp: Add new serialization functions:
1353         WRITE-INSTANCE-TO-STREAM and READ-INSTANCE-FROM-STREAM
1354         * sql/expressions.lisp: Avoid duplicate FROM names when selecting
1355         from a table that has more than one primary index.
1356         * sql/conditions.lisp: Fix printing of closed-database error
1357         
1358 13 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1359         * Version 2.11.9
1360         * sql/conditions.lisp: Set initial slot value for message in SQL-WARNING
1361         * sql/transactions.lisp: Correctly set slots of SQL-WARNING
1362
1363 12 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk>
1364         * sql/package.lisp: export DATABASE-TYPE from CLSQL and subclasses 
1365         of SQL-EXPRESSION from CLSQL-SYS. 
1366         * sql/syntax.lisp: make error signalled in SQL-OPERATION an 
1367         SQL-USER-ERROR. Make SQL-OPERATOR return just one value. 
1368         * doc/Makefile: added Mandrake linux. 
1369         * doc/catalog-redhat.xml, doc/catalog-mandrake.xml: new files. 
1370         * doc/appendix.xml: fixed little typo (adsf). 
1371         * doc/glossary.xml: removed closed-database and note about 
1372         sql-expression, added some entries. 
1373         * doc/ref-syntax.xml: documented the symbolic SQL syntax. 
1374
1375 10 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1376         * Version 2.11.8
1377         * db-mysql/mysql-loader.lisp: Remove load of unnecessary zlib library
1378         * multiple: Add generalized-boolean type as requested by
1379         Edi Weitz
1380         * TODO: Added need for test of generalized-boolean
1381         
1382 9 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1383         * Version 2.11.7 released
1384         * uffi/clsql-uffi-loader.lisp: Apply patch from Edi Weitz
1385         for loading with clc-register-user-package. Remove personal
1386         directory from path lisp.
1387         * db-mysql/mysql-loader.lisp: Similar changes
1388         
1389 8 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1390         * Version 2.11.6 released
1391         * sql/oodml.lisp: Commit patch from Edi Weitz
1392         to fix symbol writing/reading
1393         * TODO: Add need for symbol slot test
1394         
1395 7 Jun 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1396         * sql/package.lisp: remove duplicate export of 
1397         *CACHE-TABLE-QUERIES-DEFAULT*. 
1398         * doc/ref-*.xml, doc/global-index.xml: new files documenting 
1399         the CommonSQL compatible api. 
1400         * tests/test-fdml.lisp: modified the test :fdml/transaction/3 to 
1401         reflect changes in return values of WITH-TRANSACTION. 
1402
1403 04 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1404         * tests/README: Fix filename [reported by Bill Clementson]
1405         * sql/transactions.lisp: Apply return value patch from
1406         Edi Weitz for WITH-TRANSACTION
1407         * tests/README: Remove ptester package requirement (as noted
1408         by Bill Clementson)
1409         
1410 03 Jun 2004 Kevin Rosenberg <kevin@rosenberg.net>
1411         * Version 2.11.5 released
1412         * examples/clsql-tutorial.lisp: Remove obsolete :nulls-ok attribute,
1413         Select connection-spec based on connection type. Bugs reported by
1414         Bill Clementson.
1415         * uffi/uffi.dll, uffi/uffi.lib: Recompile with Visual Studio 2003
1416         * db-mysql/mysql-loader.lisp: Update check for zlibwapi library
1417         name on Windows, add \bin\ directory to search path
1418         
1419 31 May 2004 Marcus Pearce <m.t.pearce@city.ac.uk> 
1420         * db-odbc/odbc-sql.lisp: DB-TYPE replaced with DATABASE-TYPE in 
1421         DATABASE-CONNECT. 
1422         * sql/operations.lisp: substr now generates SUBSTR for use on 
1423         Oracle; added a new operator SUBSTRING for use elsewhere. minus 
1424         now generates MINUS for use on Oracle. Nvl signals an error if 
1425         not called with exactly 2 arguments. Add concat function for use 
1426         instead of the || operator on MySQL and Oracle. 
1427         * sql/syntax.lisp: changed internal symbol for the || operator to 
1428         CONCAT-OP. 
1429         * sql/expressions.lisp: removed redundant and unused functions 
1430         GENERATE-SQL (cf. SQL-OUTPUT) and DATABASE-CONSTRAINT-DESCRIPTION
1431         (cf. MAKE-CONSTRAINTS-DESCRIPTION). 
1432         * sql/generics.lisp: removed generic function for 
1433         DATABASE-CONSTRAINT-DESCRIPTION (see above). 
1434         * tests/test-syntax.lisp: modified/added tests according to changes
1435         in sql/operations.lisp. 
1436         * tests/test-fdml.lisp: changed SUBSTR to SUBSTRING in test 
1437         :fdml/select/21.  
1438         * sql/package.lisp: added the operators SQL-SUBSTRING, SQL-CONCAT-OP 
1439         and SQL-USERENV to the shared exports list. Removed 
1440         ROLLBACK-TRANSACTION, COMMIT-TRANSACTION, DATABASE-START-TRANSACTION, 
1441         DATABASE-ABORT-TRANSACTION, DATABASE-COMMIT-TRANSACTION, 
1442         TRANSACTION-LEVEL, TRANSACTION,  RECORD-SQL-COMMAND and 
1443         RECORD-SQL-RESULT from shared exports list. 
1444         
1445 30 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1446         * db-postgresql/postgresl-sql.lisp: Avoid computing
1447         result-types lisp when nil result-types. Return only
1448         one value when field-types nil.
1449         * db-mysql/mysql-sql.lisp: Simple queries now
1450         working with prepared statements.
1451         
1452 30 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1453         * Version 2.11.4: MySQL 4.1 now passes all tests
1454         * sql/package.lisp: Add API for prepared statments.
1455         * sql/fdml.lisp: Change implicit flatp processing
1456         for string map-query for greater CommonSQL conformance.
1457         Add high-high API for prepared statements.
1458         * tests/test-basic.lisp: Add test for map-query and
1459         single argument.
1460         * sql/transactions.lisp: Change name/semantics of
1461         autocommit to set-autocommit.
1462         * sql/generic-postgresql.lisp: Add support for
1463         prepared statements. 
1464         * tests/test-internal.lisp: New file
1465         * sql/odbc-api.lisp: Update to using ODBC V3 protocol
1466         * clsql-mysql.asd, clsql-uffi.asd: Remove check and Common Lisp
1467         Controller invocation.
1468         * db-mysql/mysql-api.lisp: Add support for MySQL 4.1 field structure
1469         * sql/expressions.lisp: Avoid emitting double parenthesis when a
1470         function contains a subselect. 
1471         
1472 27 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1473         * Version 2.11.3
1474         * sql/ooddl.lisp: Commit patch from Edi Weitz fixing return
1475         type (setf slot-value-using-class)
1476         * TODO: add not that need a test case for the above fix
1477         * db-sqlite: Remove clisp support since clisp can not run CLSQL
1478         with its MOP usage
1479         * db-oracle/oracle-sql.lisp: By default, use OCIEnvCreate as 
1480         introduced in Oracle8. Leave older code selectable by a reader macro
1481         for Oracle7 and prior. Avoid use of OCIServerAttach since CLSQL
1482         uses OCILogon and does not the more complex session management.
1483         
1484 26 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1485         * sql/oodml.lisp: Commit universal-time typo patch from Edi Weitz
1486         * test/test-init.lisp: Add universal-time slot to person.
1487         * test/test-fddl.lisp: Add tests of universal-time slot
1488         * test/test-ooddl.lisp: Test universal-time slot in an object
1489         * TODO: Remove need for universal-time test     
1490         * debian/rules, debian/control: Add cl-sql-oracle binary package
1491         * doc/appendix.xml: Add Oracle backend information
1492         * db-oracle/oracle-objects.lisp: Add database-get-type-specifier for
1493         universal-time. Convert BIGINT CLSQL type to CHAR SQL type
1494         * db-mysql/mysql-sql.lisp: Fix condition name to sql-connection-error
1495         * doc/ref-clsql.xml: Renamed from ref_clsql.xml. Change the documentation
1496         for map-query to reflect changed in arguments to be CommonSQL compatible.
1497         Updated old clsql conditions to new CommonSQL compatible conditions.
1498         
1499 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1500         * sql/oodml.lisp: (string n) now produces a CHAR field. Add new VARCHAR
1501         type. Added *default-varchar-length* rather than previous hard-coded
1502         varchar length. Remove 'simple-string and 'simple-base-string since they
1503         are subtypes of 'string.
1504         * db-oracle/oracle-sql.lisp: Use *default-varchar-length* rather than
1505         local hard-coded value.
1506         * sql/metaclasses.lisp: Convert specified type VARCHAR and (VARCHAR n) to Lisp
1507         type string. Convert specified-type (CHAR n) to string. Convert specified-type
1508         CHAR to lisp type character.
1509         * sql/generic-postgresql.lisp: (string n) => (CHAR n)
1510         * sql/operations.lisp: Add userenv
1511         * doc/TODO: Add AUTOCOMMIT. Remove need for large table and bigint
1512         slot tests
1513         * sql/oracle-sql.lisp: Add 64-bit bigint direct conversion
1514         * uffi/clsql-uffi.lisp: Handle signed 64-bit integers
1515         * test/test-init.lisp: Add large table with bigint slot
1516         
1517 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1518         * Version 2.11.1 released: Much simpler Oracle client library loading.
1519         Now uses ORACLE_HOME environmental variable as well as tests default
1520         path for Oracle Instant Client. 
1521         
1522 25 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1523         * Version 2.11.0 released: Full Oracle support. All tests pass
1524         * db-oracle/oracle-sql.lisp: Add declaration so that SBCL runs efficiently.
1525         * tests/test-init.lisp: capitalize odbc backend name in banner
1526         * CONTRIBUTORS: Add note about Marcus' excellent work
1527         * sql/oodml.lisp: Removed old stub function     
1528         * clsql.asd: Use module names in current package rather than keyword package
1529         * db-oracle/oracle-sql.lisp: Don't trim trailing spaces. Prevent interrupts
1530         in setting sequence position. Make autocommits more efficient.
1531         * tests/test-init.lisp: Skip 2 tests on Oracle which have unsupported syntax 
1532         * sql/oodml.lisp: Get rid of undocumented raw-string type. CommonSQL
1533         strings are raw (non-trimmed trailing whitespace). Add database-get-type-specifier
1534         and read-sql-value for NUMBER and CHAR.
1535         * sql/base-classes.lisp: Add autocommit slot
1536         * sql/transaction.lisp: Added autocommit processing, mild cleaning.
1537         * doc/intro.xml: Add Oracle
1538         
1539 24 May 2004: Marcus Pearce (m.t.pearce@city.ac.uk) 
1540         * db-postgresql-socket/postgresql-socket-sql.lisp: replace 
1541         CLSQL-SIMPLE-WARNING with SQL-WARNING. 
1542         * db-sqlite/sqlite-sql.lisp: replace CLSQL-SIMPLE-WARNING with 
1543         SQL-WARNING. 
1544         * db-aodbc/aodbc-sql.lisp: replace CLSQL-ERROR with SQL-ERROR. 
1545         * clsql.asd: reworked module structure in package definition and 
1546         file names to better reflect component functionality. 
1547         * sql/package.lisp: added SQL-FATAL-ERROR and SQL-TIMEOUT-ERROR to 
1548         exports list. Removed duplicate and obsolete exports. Exported 
1549         remaining SQL operations: SQL-SOME, SQL-<>, SQL-BETWEEN, SQL-DISTINCT, 
1550         SQL-NVL and SQL-FUNCTION. Organised exports by functionality/file and 
1551         according to whether they are specified by CommonSQL or CLSQL 
1552         extensions. 
1553         * sql/transaction.lisp: replace CLSQL-SIMPLE-WARNING with 
1554         SQL-WARNING. 
1555         * sql/generics.lisp: moved generics for QUERY and EXECUTE-COMMAND 
1556         here from basic-sql.lisp. 
1557         * sql/expressions.lisp: NEW FILE: renamed from classes.lisp (deleted). 
1558         * sql/fddl.lisp: NEW FILE: renamed from table.lisp (deleted). 
1559         * sql/fdml.lisp: NEW FILE: merger of basic-sql.lisp and sql.lisp
1560         (both deleted). 
1561         * sql/ooddl.lisp: NEW FILE: ooddl from objects.lisp (deleted). 
1562         * sql/oodml.lisp: NEW FILE: oodml from objects.lisp (deleted). 
1563         
1564 23 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1565         * Version 2.10.22 released
1566         * sql/kmr-mop.lisp, sql/objects.lisp: Since SBCL is the only implementation that
1567         has reversed class slots, change the default for ordered-class-slots so that slots
1568         are now in the same order an in the def-view-class.
1569         * sql/sql.lisp: Honor case of string table identifier to INSERT-RECORDS
1570         * test/test-fddl.lisp: Add two tests for mixed case names
1571         * db-oracle/oracle-sql.lisp: Add missing database qualifier. Return NUMBER (double)
1572         for computed fields, this will require some adjustment to the test suite which
1573         in many cases expects integers.
1574         * test/test-fdml.lisp: Accomodate that Oracle returns doubles for computed columns
1575         
1576 22 May 2004 Kevin Rosenberg <kevin@rosenberg.net>
1577         * Version 2.10.21 released
1578         * sql/sequences.lisp: Move generic sequence functions here from db-sqlite,
1579         db-odbc, and db-aodbc.
1580         * sql/*.lisp: Add db-type parameter to generic functions READ-SQL-VALUE,
1581         DATABASE-GET-TYPE-SPECIFIER, and OUTPUT-SQL-VALUE-AS-TYPE. Update methods to use these.
1582         * sql/generic-postgresql.lisp, sql/generic-odbc.lisp: New files
1583         * db-odbc/odbc-sql.lisp, db-aodbc/aodbc-sql.lisp: Move common code to 
1584         sql/generic-odbc.lisp
1585         * db-postgresql/postgresql-sql.lisp, db-postgresql-socket/postgresql-socket-sql.lisp: 
1586         Move common code to  sql/generic-postgresql.lisp
1587         * sql/classes.lisp: honor case of string tables when outputting queries 
1588         * sql/objects.lisp: Add database type to default database-get-type-specifier method
1589         * sql/sql.lisp:  Add database type to default database-abort-transaction method
1590         * db-mysql/mysql-objects.lisp: New file
1591         * sql/objects.lisp: Move MySQL specific code to mysql-objects.lisp
1592         * sql/utils.lisp: Add GETENV function which will be used to get ORACLE_HOME
1593         from environment
1594         * test/test-fdml.lisp: String table names are now case sensitive, so convert to
1595         default db case for FDML/SELECT/25
1596
1597 22 May 2004 Kevin Rosenberg
1598         * Version 2.10.20 released: Oracle backend now fails 6 out of 200 tests
1599         * TODO: Added 2 variances from CommonSQL. Add tests for owner phrases
1600         and string identifiers with non-default case
1601         * sql/table.lisp: Don't convert string table name to a symbol.
1602         * sql/classes.lisp: Honor case of string identifiers
1603         * sql/sql.lisp: Ensure recyclebin is purged for Oracle in 
1604         TRUNCATE-DATABASE
1605         * db-oracle/oracle-sql.lisp: Add sequence functions, fix use of
1606         of owner phrases. Obtain server and client versions.
1607         * db-oracle/oracle-objects.lisp: Fix type specifiers
1608         * tests/test-fddl.lisp: Allow :varchar2 and :number as data types
1609         * tests/test-init.lisp: Properly get username from Oracle connection-spec
1610         
1611 22 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1612         * sql/generics.lisp: reworked docstrings. Remove generics for 
1613         ADD-TO-RELATION and REMOVE-FROM-RELATION. 
1614         * sql/objects.lisp: reworked docstrings. Changed UPDATE-OBJECT-JOINS 
1615         to UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
1616         * sql/package.lisp: Changed UPDATE-OBJECT-JOINS to UPDATE-OBJECTS-JOINS 
1617         for CommonSQL compatibility. Remove ADD-TO-RELATION and 
1618         REMOVE-FROM-RELATION. 
1619         * tests/test-oodml.lisp: Changed UPDATE-OBJECT-JOINS to 
1620         UPDATE-OBJECTS-JOINS for CommonSQL compatibility. 
1621         * doc/TODO: added notes about extra slot options to DEF-VIEW-CLASS. 
1622         * sql/conditions.lisp: add documentation for conditions. Add 
1623         SQL-TIMEOUT-ERROR and SQL-FATAL-ERROR for CommonSQL compatibility. 
1624
1625 21 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1626         * sql/basic-sql.lisp: reworked docstrings. 
1627         * sql/transactions.lisp: reworked docstrings. 
1628         * sql/sql.lisp: reworked docstrings. 
1629         * sql/initialize.lisp: reworked docstrings. INITIALIZE-DATABASE-TYPE 
1630         sets *DEFAULT-DATABASE-TYPE* for CommonSQL compatibility. 
1631         * sql/database.lisp: reworked docstrings. 
1632         * doc/TODO: added notes about START-TRANSACTION and IN-TRANSACTION-P 
1633         and FDML extensions and database extensions. 
1634
1635 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1636         * db-oracle/oracle-sql: Use clsql-specific error conditions. Use owner keyword.
1637         * db-oracle/make9.sh: add makefile for building with Oracle 9 client
1638         libraries
1639         * sql/table.lisp: Add logic for dealing with Oracle 10g vs. previous
1640         Oracle versions with the PURGE option required for drop table. This needs
1641         to be converted to a generic function and moved to db-oracle/oracle-sql.lisp
1642
1643 20 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1644         * sql/classes.lisp: remove unused PARAMS slot in SQL-IDENT-ATTRIBUTE. 
1645         * sql/syntax.lisp: remove unused PARAMS keyword arg to SQL-EXPRESSION. 
1646         * sql/table.lisp: reworked docstrings. 
1647         * sql/objects.lisp: moved *default-update-objects-max-len* here from 
1648         table.lisp. 
1649         * doc/TODO: notes about :if-does-not-exist arg to DROP-TABLE, 
1650         DROP-VIEW and DROP-INDEX and the use of the :transactions and 
1651         :constraints keyword args to CREATE-TABLE. 
1652         * sql/classes.lisp: the DESCRIPTION argument to CREATE-TABLE is now 
1653         CommonSQL compatible with respect to column constraints. 
1654
1655 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1656         * sql/oracle-sql.lisp: Now compiles and runs on SBCL.
1657         Requires UFFI 1.5.0 or higher
1658         
1659 20 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1660         * Version 2.10.19
1661         * sql/conditions.lisp: Fix cerror
1662         
1663 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1664         * Version 2.10.18 released: New condition hierarchy to be compatible
1665         with CommonSQL -- not backward compatible with previous CLSQL.
1666         * sql/db-interface.lisp: Add more default methods
1667         * sql/objects.lisp: Add explicit table name to order-by parameters
1668         in find-all when only one table to avoid selecting a duplicate row.
1669         Fix error in FIND-ALL when using :order-by such as (([foo] :asc))
1670         as previous logic was adding two fields (foo asc) to SELECT query.
1671         Make :result-types :auto be the default for object selections.
1672         Properly handle caching key when using multiple order-by with asc/desc
1673         directions.
1674         * db-oracle/*.lisp: Much improvements, now passes 90% of test suite
1675         
1676 19 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1677         * sql/recording.lisp: reworked docstrings. 
1678         * sql/syntax.lisp: reworked docstrings. 
1679         * doc/TODO: added notes about extensions to SQL-RECORDING-P and the 
1680         SQL syntax state functions being macros. 
1681
1682 19 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1683         * sql/package.lisp: Export initialize-database-type and
1684         *initialize-database-types* from CLSQL package.
1685         * sql/conditions.lisp: Add new CommonSQL compatible conditions,
1686         remove old CLSQL conditions.
1687         * sql/loop-extensions.lisp: Make errors of type sql-user-error
1688         * */*.lisp: Convert to from old to new conditions
1689         
1690 18 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1691         * sql/table.lisp: Add PURGE to drop command for oracle 10g backend.
1692         To handle this difference, will need to add a new database-drop-table
1693         generic function.
1694         * db-oracle/oracle-sql.lisp: Move server-version and
1695         major-version-number to database object to allow multiple connections
1696         to Oracle servers of different versions.
1697         
1698 18 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1699         * TODO: moved notes about backends to doc/TODO. 
1700         * doc/TODO: added notes about backends and select extensions. 
1701         * sql/base-classes.lisp: remove obsolete schema slot in database 
1702         class. 
1703         
1704 16 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1705         * db-oracle/oracle-api: Add OCIServerVersion
1706         * db-oracle/oracle-sql: Query and store server version on connect
1707         * sql/db-interface.lisp: Add new db-type-has-bigint? generic
1708         function to handle OCI's lack of bigint support
1709         * test/test-basic.lisp: Separate bigint testing
1710         * test/test-utils.lisp: Add oracle to specs and list of backends
1711         * doc/TODO: New file
1712         * test/test-fdml.lisp: Added FDML/SELECT/34 to test
1713         run-time instantiation of variables in reader macros.
1714         * TODO: Remove item already complete. Add note about
1715         condition variances
1716         
1717 16 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1718         * sql/syntax.lisp: added condition to the reader macro to treat [*] 
1719         as a column identifier (rather than an operation) for CommonSQL 
1720         compatibility. 
1721         * tests/test-fdml.lisp: add tests for ORDER-BY and SET-OPERATION 
1722         keword args to SELECT, [*] as column identifier, new MAP-QUERY 
1723         behaviour and the ANY and ALL operators in subqueries. 
1724         * tests/test-init.lisp: add set-operation and subquery tests to 
1725         appropriate skip lists. 
1726         * sql/objects.lisp: remove redundant and non CommonSQL compatible 
1727         ORDER-BY-DESCENDING keyword argument for SELECT. 
1728         * sql/classes.lisp: remove redundant and non CommonSQL compatible 
1729         ORDER-BY-DESCENDING keyword argument for SELECT. 
1730         * tests/test-oodml.lisp: add test for ORDER-BY keyword to SELECT 
1731         with object queries. 
1732
1733 15 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1734         * sql/db-interface.lisp: Add new db-type-has-union? 
1735         since Mysql 3.23 does not support unions.
1736         * sql/test-init.lisp: Don't try union tests on database
1737         backends which do not support it.
1738         * db-oracle/*.lisp: initial port to UFFI
1739         * sql/objects.lisp: implement UPDATE-OBJECT-JOINS,
1740         implement REFRESH for SELECT.
1741         * tests/test-oodml.lisp: Add tests for deferred retrieval,
1742         caching, refresh, and update-object-joins
1743         * tests/test-init.lisp: Add deferred-employee-address class
1744         
1745 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1746         * sql/operations.lisp: make MINUS operator a synonym for EXCEPT. Add 
1747         COALESCE operator and make NVL a synonym for this. Make ANY, SOME, 
1748         ALL and EXISTS generate function expressions so they output the 
1749         correct SQL. 
1750         * sql/classes.lisp: SELECT now generates appropriate SQL when 
1751         passed the SET-OPERATION and ALL keyword arguments. 
1752         * sql/classes.lisp: the ORDER-BY keyword argument to SELECT now 
1753         accepts ordering constraints as pairs of the form (column direction) 
1754         where direction may be :ASC or :DESC. 
1755         * tests/test-syntax.lisp: added tests for MINUS and COALESCE/NVL. 
1756         Correct tests for ANY, SOME, ALL and EXISTS. 
1757         * tests/test-fdml.lisp: added test for COALESCE. 
1758         * sql/sql.lisp: MAP-QUERY now applies FUNCTION to QUERY-EXPRESSION 
1759         using funcall unless QUERY-EXPRESSION returns one column and its 
1760         FLATP slot is not nil in which case apply is used. 
1761         * tests/test-basic.lisp: modified calls to MAP-QUERY to reflect the 
1762         changes. 
1763         * TODO: remove items done. 
1764         * db-postgresql/postgresql-sql.lisp: no need to reverse results in 
1765         DATABASE-LIST-ATTRIBUTES. 
1766         * db-postgresql-socket/postgresql-socket-sql.lisp: no need to reverse
1767         results in DATABASE-LIST-ATTRIBUTES.    
1768         
1769 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1770         * sql/classes.lisp: SELECT now accepts table identifiers as strings 
1771         for CommonSQL compliance. Add support for qualified sql identifiers 
1772         with aliased table names. 
1773         * tests/test-fdml.lisp: added tests for table identifiers as strings 
1774         in SELECT and for aliased definitions. 
1775         * tests/test-syntax.lisp: added tests for alias definitions. 
1776         
1777 15 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1778         * sql/sql.lisp: PRINT-QUERY now calls QUERY with result-types and 
1779         field-names set to nil. 
1780         * sql/sql.lisp: PRINT-QUERY now computes column sizes correctly 
1781         with null attribute values. 
1782         * sql/operations.lisp: modify SQL concatenation operator to accept 
1783         unescaped || symbol.  
1784         * sql/syntax.lisp: modify sql reader macro function to accept 
1785         unescaped sql concatenation operator. 
1786         * tests/test-fdml.lisp: unescape sql concatenation operator. 
1787         * tests/test-syntax.lisp: unescape sql concatenation operator. 
1788         * TODO: remove items done. Add notes about SQLITE/MYSQL backends. 
1789         Note to add test for universal-time. Note about difference from 
1790         CommonSQL in transaction handling. 
1791
1792 13 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1793         * tests/test-init.lisp: Add deferred-employee-address
1794         class
1795         * tests/test-oodml.lisp: Add deferred retrieval testgs
1796         
1797 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1798         * Version 2.10.17
1799         * LATEST-TEST-RESULTS: Run on all platforms, add AMD64
1800         * sql/sql.lisp: Add FOR-EACH-ROW macro from clsql-classic/sql.lisp
1801         * db-sqlite/sqlite-uffi-api.lisp: Fix row-pointer type
1802         * *: Fix minor style warnings
1803         * clsql-classic: Remove system and subdirectory
1804         * clsql-base: Remove system and subdirectory and
1805         fold into clsql system
1806         * doc/intro.xml: Remove reference to old clsql-base. Add x86_64
1807         as supported platform.
1808         
1809 12 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1810         * Version 2.10.16: CLSQL now fully supports AllegroCL AMD64
1811         * db-odbc/odbc-api.lisp: work around return-type bug [spr28889] in
1812         Allegro 7.0beta AMD64
1813         * db-odbc/*.lisp: Add a layer of indirection to foreign-type
1814         of ODBC longs since this type can vary on 64-bit platforms depending
1815         upon the compilation options of unixODBC.
1816         * db-mysql/mysql-api.lisp: Fix int vs. long slots in foreign
1817         structures found by testing with AllegroCL 7.0b AMD64.
1818         * db-*/*-loader.lisp: Load 64-bit libraries on 64-bit platorms
1819         * sql/objects.lisp: Simple implementation of UPDATE-OBJECT-JOINS.
1820         Initial caching support for SELECT
1821         * tests/test-oodml.lisp: Avoid using cache when testing select.
1822         * sql/kmr-mop.lisp: Explicitly check slot order and
1823         store as a cl:*feature*
1824         * sql/recording.lisp: Remove additional types to
1825         increase CommonSQL conformance.
1826         * tests/test-init.lisp: Change a :column attribute
1827         to test symbols as value
1828         * sql/relations.lisp: Remove functions since they don't support
1829         many to many relationships.
1830         * examples/clsql-tutorial.lisp, doc/csql.lisp: Remove use
1831         of add-to-relations function and replace with explicit field settings.
1832         * base/classes.lisp: Remove obsolute query-stream. Add record-caches slot.
1833         
1834 9 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1835         * Version 2.10.15
1836         * LATEST-TEST-RESULTS: results with current version
1837         * sql/kmr-mop.lisp: Make CMUCL reader macros specific for cmu18
1838         since cmu19 has opposite order of class slots.
1839         * sql/objects.lisp: Fix (setf slot-value-using-class) for Lispworks
1840         * tests/test-fdml.lisp: Renumber SELECT tests to avoid overwriting
1841         a previous test
1842         * tests/test-init.lisp: Check test-database-underlying-type for
1843         ODBC/MySQL tests
1844         
1845 8 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1846         * sql/operations.lisp: complete remaining operations for the sql 
1847         syntax: SUBSTR, SOME, ORDER-BY, GROUP-BY, NULL, DISTINCT, EXCEPT, 
1848         UNION, INTERSECT, BETWEEN. 
1849         * sql/classes.lisp: add new classes: SQL-BETWEEN-EXPRESSION, 
1850         SQL-QUERY-MODIFIER-EXPRESSION and SQL-SET-EXPRESSION. 
1851         * tests/test-syntax.lisp: add tests for new operations. 
1852         * tests/test-fdml.lisp: add tests for queries based on new operations. 
1853         * tests/test-init.lisp: add select/20 to tests skipped for sqlite and 
1854         select/20, query/5, query/7 and query/8 to tests skipped by mysql. 
1855         * TODO: removed entries done. 
1856
1857 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1858         * tests/benchmarks.lisp: Add immediate vs. deferred
1859         join test.
1860         
1861 8 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1862         * Version 2.10.13: Now works on openmcl 0.14.2 
1863         * sql/objects.lisp: Add :retrieval :immediate for
1864         object selections
1865         * tests/test-init.lisp: Add non-index fields for testing 
1866         join class employee-addresss
1867         * test/test-oodml.lisp: Add tests for retrieval immediate
1868         * sql/metaclasses.lisp: Handle differences in direct-slot-definition 
1869         values which are now listifed by openmcl 14.2.
1870         * sql/objects.lisp: more framework for supporing immediate retrieval 
1871
1872 7 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1873         * docs/intro.xml: Upload location of a README file
1874         * sql/metaclass.lisp: Work-around openmcl's CHANGE-CLASS
1875         changing the type-specifier. Use a lisp type of (OR NULL FOO)
1876         for a specified-type of FOO unless :db-constraints :not-null.
1877         No need to specialize finalize-inheritance for openmcl.
1878         * tests/test-*.lisp: Rename fields so that joins occur on
1879         fields with different names. This ensures that join code is
1880         selecting the proper name.
1881         * test/test-init.lisp: Add :base-table for employee-address
1882         view class for testing.
1883         * sql/objects.lisp: Use view-table rather than name of table
1884         in a number of places to fix errors noted with using :base-table.
1885
1886 6 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1887         * sql/objects.lisp: replace *update-records-on-make-instance* with 
1888         *db-auto-sync* which also controls both automatic creation of 
1889         new records on creation of new instance and updating of record 
1890         fields on setting of instance slots (as suggested by Edi Weitz). 
1891         * tests/test-init.lisp: replace *update-records-on-make-instance* 
1892         with *db-auto-sync*. 
1893         * sql/package.lisp: replace *update-records-on-make-instance* 
1894         with *db-auto-sync*. 
1895         * TODO: replace *update-records-on-make-instance* with *db-auto-sync*. 
1896         * sql/objects.lisp: remove redundant rebindings of *db-initializing* 
1897         and *default-database* in FIND-ALL. 
1898         * sql/package.lisp: import time functions from CLSQL-BASE. 
1899         * tests/test-time.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
1900         * tests/test-fdml.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
1901         * tests/test-init.lisp: replace CLSQl-BASE package qualifier with CLSQL. 
1902         * tests/test-ooddl.lisp: replace CLSQl-BASE package qualifier with 
1903         CLSQL. 
1904
1905 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1906         * sql/classes.lisp: Add SQL-OBJECT-QUERY type. Have [select 'class]
1907         now return a sql-object-query type rather than directly performing a query.
1908         This improves CommonSQL conformance.
1909         * sql/sql.lisp: Add new QUERY method for SQL-OBJECT-QUERY. Move
1910         from basic/basic-sql.lisp the DO-QUERY and MAP-QUERY since they now
1911         depend on sql-object-query-type.
1912         * sql/loop-extensions.lisp: Move from base package
1913         * classic/package.lisp: remove references to map-query and do-query
1914
1915 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1916         * TODO: New section on optimizations, especially optimizing JOINs.
1917         * sql/objects.lisp: Have :target-slot return of list of lists rather
1918         than a list of cons pairs to be conformant with CommonSQL.
1919         Make :target-slot much more efficient by using a SQL inner join
1920         statement and just requiring one SQL query. Add :retrieval :deferrred
1921         to target-slot joins. Add placeholder for update-objects-join.
1922         * sql/classes.lisp: Add :inner-join and :on slots to sql-query class
1923         and process them for query output-sql. 
1924
1925 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1926         * Version 2.10.11
1927         * base/basic-sql.lisp: Avoid multiple evaluation
1928         of query-expression in DO-QUERY
1929         * sql/objects.lisp: Make SELECT a normal function.
1930         SELECT now accepts type-modified database identifiers, such as
1931         [foo :string] which means that the values in column foo are returned 
1932         as Lisp strings. Add new *update-records-on-make-instance* special
1933         variable controlling automatic creation of new instances. Add missing
1934         RESULT-TYPES keyword to FIND-ALL. Add :target-slot support.
1935         * sql/packages.lisp: Export *update-records-on-make-instance* 
1936         * test/test-oodml.lisp: Add tests for :target-slot and many-to-many
1937         selections.
1938         * test/test-fdml.lisp: Add tests for type-modified
1939         database identifiers.
1940         * test/test-init.lisp: Stop using add-relation since implementing
1941         many-to-many joins. Use *update-records-on-make-instance* 
1942         to automatically store records on instance creation. Add many-to-many
1943         employee-address view-class.
1944         
1945 4 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1946         * Version 2.10.10
1947         * base/loop.lisp: Add object iteration. Use :result-type
1948         :auto for result-set. Remove 
1949         duplicate (and non-correct) code for non-list variables by
1950         simply making an atom variable into a list. 
1951         * sql/package.lisp: Remove unnecessary clsql-sys package
1952         and replace it with clsql.
1953         * sql/metaclasses.lisp: Properly store specified-type from
1954         direct-slot-definition and then store translated type in
1955         effective-slot-definition
1956         * sql/classes.lisp: Don't output type in sql-output
1957         for SQL-IDENT-ATTRIBUTE. This is in preparation for supporting
1958         [foo :integer] as fields in SELECT.
1959         * sql/query.lisp: Set default for :result-types to :auto in
1960         FDML QUERY.
1961         * sql/objects.lisp: Use specified-type when invocating 
1962         database-get-type-specifier. def-view-class macro now returns
1963         the class instance.
1964         * base/basic-sql.lisp: Make :AUTO the default value for
1965         :RESULT-TYPES for MAP-QUERY and DO-QUERY.
1966         * sql/objects.lisp: Add bigint type
1967         * test/tests-basic.lisp: Add tests for :result-types for
1968         MAP-QUERY and DO-QUERY
1969         * test/test-fdml.lisp: Add test for result-types in LOOP
1970         and also using single symbol rather than a list for variables.
1971         Add test that default :result-types is auto for FDML QUERY.
1972         * test/test-syntax.lisp: Don't expect TYPE in the SQL-OUTPUT
1973         of SQL-IDENT-ATTRIBUTE.
1974         * test/test-oodml.lisp: Enable OO loop iteration test,
1975         modify it so it doesn't depend on boolean where.
1976         
1977 4 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
1978         * Version 2.10.9
1979         * sql/objects.lisp: added derived type specifier for universal time. 
1980         * sql/package.lisp: added #:universal-time to clsql-sys exports. 
1981         * tests/test-oodml.lisp: added test for translation of boolean slots 
1982         in SELECT with object queries. 
1983         
1984 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1985         * db-odbc/odbc-api.lisp: Fix changing nil to "NIL" 
1986         for odbc/postgresql backend.
1987         * db-odbc/odbc-sql.lisp: Fix ATTRIBUTE-TYPE so that
1988         it can handle NIL values from the ODBC driver
1989         * tests/benchmarks.lisp: New file with initial
1990         benchmark suite
1991         * sql/relations.lisp: fix to add subclassing support,
1992         minor optimizations [Edi Weitz]
1993         
1994 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
1995         * Version 2.10.8        
1996         * base/conditions.lisp: Add *backend-warning-behavior*
1997         special variable.
1998         * db-postgresql-socket/postgresql-socket-sql.lisp:
1999         Honor value of *backend-warning-behavior*
2000         * tests/test-fdml.lisp: Remove test of raw boolean value
2001         since different backends handle this differently. Add
2002         test for :column attribute.
2003         * tests/test-oodml.lisp: Add tests for boolean slot value
2004         and for :void-value attribute
2005         * tests/test-init.lisp: Use *backend-warning-behavior*
2006         to suppress warnings from postgresql about implicitly
2007         creating primary key in tables. Add new address table.
2008         
2009 3 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
2010         * Version 2.10.7
2011         * db-odbc/odbc-dbi.lisp: Convert TINYINT to integers when
2012         result-types is :auto
2013         * sql/objects.lisp: Properly handled writing/reading Boolean
2014         values from SQL database when retrieving objects.
2015         * test/test-fdml.lisp: Add another test for boolean results
2016         * test/utils.lisp: Fix incorrect declaration
2017         
2018 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
2019         * Version 2.10.6
2020         * sql/generics.lisp: add generic function for SELECT. 
2021         * sql/objects.lisp: make SELECT a method specialisation. 
2022         * sql/classes.lisp: MAKE-QUERY now calls SELECT if the selections 
2023         referred to are View Classes. 
2024         * base/basic-sql.lisp: in DO-QUERY and MAP-QUERY, if the 
2025         query-expression arg evaluates to a list, then we have an object 
2026         query. 
2027         * tests/test-oodml.lisp: add tests for DO-QUERY and MAP-QUERY with 
2028         object queries. 
2029         * TODO: remove items done and add a todo for SELECT. 
2030         * sql/objects.lisp: SELECT takes a :field-names arg to pass on to 
2031         QUERY. 
2032         * sql/sql.lisp: add :field-names arg to QUERY. 
2033         * tests/test-fdml.lisp: minor rework to use :field-names arg to 
2034         SELECT. 
2035
2036 2 May 2004 Marcus Pearce (m.t.pearce@city.ac.uk)
2037         * sql/objects.lisp: fix bug in FIND-ALL when SELECT called with 2 
2038         or more View Classes. 
2039         * sql/objects.lisp: make the :flatp argument to SELECT work with 
2040         object queries. 
2041         * sql/objects.lisp: make SELECT accept a :result-types argument 
2042         (defaults to :auto) which is passed on to QUERY.  
2043         * sql/objects.lisp: SELECT returns field-names as a second value. 
2044         * tests/test-ooddl.lisp: add flatp arg to SELECT calls as appropriate. 
2045         * tests/test-fdml.lisp: add flatp/result-types arguments to calls 
2046         to SELECT and take only first value as appropriate.
2047         * tests/test-fdml.lisp: add two new tests for query result coercion 
2048         and the field-names returned as a second value from SELECT. 
2049         * tests/test-oodml.lisp: add flatp arg to SELECT calls as appropriate. 
2050         
2051 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
2052         * Version 2.10.6-pre1
2053         * sql/metaclasses.lisp: Add void-value slot
2054         * doc/csql.xml: Update def-view-class documentation
2055         * test/test-init.lisp: Change old :db-type to :db-kind.
2056         Remove old :nulls-ok attributes.
2057         * sql/objects.lisp: Add new universal-time and bigint
2058         types. Optimize reading of integers using parse-integer
2059         rather than read-from-string.
2060         * */*.lisp: Merge clsql-base-sys and clsql-base packages
2061         into clsql-base package
2062         * classic/sql.lisp: Move large object support into base, leaving
2063         classic without any functionality that is provided in the clsql
2064         system.
2065         * classic/package.lisp: Rename clsql-classic-sys package to
2066         its former nickname of clsql-classic
2067         
2068 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
2069         * Version 2.10.5: SQLite backend now passes all result-types tests
2070         * clsql-sqlite.asd: Depend on clsql-uffi system
2071         * db-sqlite/sqlite-sql.lisp: Use clsql-uffi:convert-raw-field
2072         for efficiency and code reuse. 
2073         * db-sqlite/sqlite-api-uffi.lisp: Change (* :char) to (* :unsigned-char)
2074         for better cross-implementation compatibility.
2075
2076 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
2077         * Version 2.10.4
2078         * sql/tables.lisp: Fix typo in CACHE-TABLE-QUERIES
2079         [Marcus Pearce]
2080         * db-postgresql/postgresql-sql.lisp: Fix foreign-string vs. cstring
2081         bug on SBCL in result-field-names function as reported by Marcus Pearce
2082         * db-sqlite/sqlite-sql.lisp: Fix  in database-store-next-row
2083         manifest in SBCL testing
2084         
2085 1 May 2004 Kevin Rosenberg (kevin@rosenberg.net)
2086         * Version 2.10.3
2087         * sql/database.lisp: Conform more to CommonSQL output
2088         for STATUS command [Marcus Pearce]
2089         * sql/sqlite-sql.lisp: Rework to use result-types
2090         * sql/sqlite-api-clisp.lisp: Add compatibility layer
2091         with sqlite-api-uffi.lisp so that sqlite-sql.lisp can
2092         be cleaned up of most clisp reader conditionals
2093         * sql/test-init.lisp: Now run field type tests on sqlite
2094         backend
2095         
2096 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2097         * Version 2.10.2
2098         * base/basic-sql.lisp: Set default value of :result-types 
2099         to :auto for more CommonSQL conformance. 
2100         * test/test-fdml.lisp: Add tests for numeric value of fields
2101         
2102
2103 30 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2104         * Version 2.10.1: New API function: CACHE-TABLE-QUERIES.
2105         * base/basic-sql.lisp, db-*/*-sql.lisp: More CommonSQL conformance.
2106         Return field names as second value for QUERY. This can be overridden
2107         for efficiency with the new keyword :FIELD-NAMES set to NIL
2108         in the QUERY invocation.
2109         * test/test-fdml.lisp: Add tests for new field-name feature
2110         * sql/metaclass.lisp: Remove old Lispworks cruft
2111         and replace it with invocation of new code in kmr-mop.lisp
2112         which actually works with Lispworks 4.2
2113         * doc/ref_clsql.xml: Document new :FIELD-NAMES keyword to
2114         QUERY function
2115         * base/db-interface.lisp: Document the multiple values
2116         returned by DATABASE-ATTRIBUTE-TYPE so matches the
2117         undocumented CommonSQL behavior. 
2118         * sql/table.lisp: Add *CACHE-TABLE-QUERIES-DEFAULT* and
2119         *DEFAULT-UPDATE-OBJECTS-MAX-LEN* variables and export them.
2120         LIST-ATTRIBUTE-TYPES now conforms to CommonSQL spec.
2121         Implement CACHE-TABLE-QUERIES.
2122         * db-odbc/odbc-sql.lisp: Fix attribute-type function
2123         * test/test-fddl.lisp: Add tests for attribute type     
2124         * db-mysql/mysql-sql.lisp: Mild optimization in accessing
2125         field structures.
2126         * base/classes.lisp: Add attribute-cache slot to database clas
2127         * base/initialize.lisp: initialize-database-type now automatically
2128         loads database-type backend as needed.
2129         * base/test-init.lisp: Utilize new initialize-database-type functionality.
2130         * TODO: remove items done
2131         
2132 30 Apr 2004 Marcus Pearce (m.t.pearce@city.ac.uk) 
2133         * Version 2.9.6
2134         * sql/objects.lisp: remove create/drop-sequence-from-class. 
2135         * sql/objects.lisp: add INSTANCE-REFRESHED generic function. 
2136         * sql/objects.lisp: improved CommonSQL compatibility for
2137         UPDATE-RECORD-FROM-SLOT, UPDATE-RECORD-FROM-SLOTS,
2138         UPDATE-RECORDS-FROM-INSTANCE and DELETE-INSTANCE-RECORDS. 
2139         * sql/generics.lisp: move generics from objects.lisp to here. 
2140         
2141 29 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2142         * Version 2.9.6-pre1
2143         * db-mysql/mysql-client-info.lisp: Add client version 4.1
2144         detection
2145         * sql/sql.lisp: Make *default-database* the default for
2146         TRUNCATE-DATABASE
2147         
2148 28 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2149         * Version 2.9.5
2150         * db-mysql/mysql-sql.lisp: Fix bug in transaction capability
2151         detection
2152         * sql/objects.lisp: Commit patch from Slawek Zak to allow specifying 
2153         :metaclass in DEF-VIEW-CLASS invocation. This allows defining classes 
2154         on a metaclass specialized from standard-db-class.
2155
2156         
2157 24 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2158         * Version 2.9.4: Multiple changes to support Allegro's "modern"
2159         lisp which uses a lowercase reader and has case-sensitive symbols
2160         * sql/classes.lisp: Fix make-load-form bug for sql-ident-table
2161         exposed by case-sensitive mlisp. 
2162
2163 22 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2164         * Version 2.9.3: All tests now pass on all platforms!
2165         * LATEST-TEST-RESULTS: New file with summary of test results
2166         * sql/generics.lisp: New file for generic function definitions.
2167         * test/test-init.lisp: Display names of skipped tests.
2168         Use unwind-protect to ensure disconnect
2169         * sql/objects.lisp: Change database-type to database-underlying-type
2170         so that actual database engine is properly identified
2171         * db-odbc/odbc-api.lisp: Have default *time-conversion-function*
2172         return an ISO timestring for compatibility with other drivers.
2173         Workaround bug in MyODBC for LIST-TABLE-INDEXES
2174         * test/test-fdml.lisp: Accomodate that odbc-postgresql driver
2175         returns floating-point values for floor and truncate operations 
2176         * db-aodbc/aodbc-sql.lisp: Implement DATABASE-LIST-VIEWS
2177         * tests/test-basic.lisp: Port to regression tester
2178         * test/test-init.lisp: Output to *report-stream*
2179         * docs/appendix.xml: Document ODBC and SQLite backends.
2180         * sql/classes.lisp: Make output-sql require a database parameter.
2181         This allows SQL generation to have the proper case to support
2182         the differences in case handling between CommonSQL API,
2183         Postgresql, MySQL, Oracle.
2184         
2185 21 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2186         * Version 2.9.2: Improvments in database capability introspection
2187         and querying. Support transactions in MySQL where available.
2188         All tests now pass on MySQL and SQLite in addition to postgresql
2189         and postgresql-socket. ODBC fails only with OODDL/TIME/1 and OODDL/TIME/2.
2190         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST-VIEWS. Better support
2191         DATABASE-LIST-SEQUENCES.
2192         * clsql-uffi.asd, clsql-mysql.asd: Improve shared library loading
2193         * Database_capabilies: add HAS-VIEWS, HAS-CREATE/DESTROY-DB,
2194         HAS-BOOLEAN-WHERE, TRANSACTION-CAPABLE
2195         * tests/*.lisp: Check database capabilities and remove tests which
2196         the database backend does not support
2197         * sql/table.lisp: Add :TRANSACTIONS keyword to create table which
2198         controls whether InnoDB tables will be created when supported on
2199         the underlying MySQL server.
2200         
2201 20 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2202         * Version 2.9.0: New API function: LIST-TABLE-INDEXES,
2203         supported by all database backends (except AODBC since
2204         AODBC doesn't support index querying)
2205         * db-obdc/odbc-sql.lisp: Support DATABASE-LIST-INDEXES
2206         * db-odbc/odbc-api.lisp: Add %TABLE-STATISTICS function
2207         to support index queries
2208         * db-aodbc/aodbc-sql.lisp: Filter driver manager
2209         "information_schema" tables from LIST-TABLES
2210         * tests/test-basic.lisp: Remove table after testing
2211         * tests/test-fddl.lisp: Test LIST-TABLE-INDEXES
2212         * base/db-interface.lisp: Add DATABASE-UNDERLYING-TYPE
2213         which gets the underlying type of database -- required
2214         when dealing with ODBC databases and want to query
2215         database capabilities. Added DB-USE-COLUMN-ON-DROP-TABLES?
2216         as first database-backend specific feature. Is T on
2217         :mysql, NIL on other backends. Change DROP-TABLE to
2218         query this.
2219         
2220 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2221         * Version 2.8.2: Build changes for FreeBSD [Slawek Zak]
2222
2223 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2224         * Version 2.8.1
2225         * db-odbc/odbc-sql.lisp: Add DATABASE-LIST function 
2226         * db-odbc/odbc-dbi.lisp: Add LIST-ALL-DATA-SOURCES function 
2227
2228 19 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2229         * Version 2.8.0: New API function: LIST-DATABASES
2230         * base/utils.lisp: Fix command-output on CMUCL/SBCL
2231         * db-*/*-sql.lisp: Add new database-list function
2232         * base/database.lisp: Add new LIST-DATABASES command
2233         
2234 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2235         * Version 2.7.9
2236         * db-sqlite/sqlite-sql.lisp: Fix sequence functions.
2237         * db-sqlite/sqlite-api-uffi.lisp: Print error string
2238         correctly.
2239         
2240 18 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2241         * Version 2.7.7
2242         * doc/csql.xml, examples/clsql-tutorial.lisp: Patch for db-kind
2243         from Eduardo Munoz.
2244         
2245 17 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2246         * Version 2.7.6
2247         * base/objects.lisp, base/classes.lisp: Patch
2248         for db-kind from Eduardo Munoz
2249         
2250 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2251         * Version 2.7.5
2252         * base/basic-sql.lisp: Fix FLATP in QUERY
2253
2254 16 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2255         * Version 2.7.3: Implement RECONNECT
2256
2257 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2258         * Version 2.7.2: Fix ODBC on Lispworks Windows
2259
2260 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2261         * Version 2.7.1: Fix for new ODBC backend.
2262         clsql-odbc now works on SBCL, CMUCL, OpenMCL
2263         in addition to AllegroCL and Lispworks.
2264
2265 15 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2266         * Version 2.7.0: New backend: ODBC. Tests as
2267         well as AODBC backend on Allegro,Lispworks.
2268         SBCL and CMUCL don't work quite yet.  Requires UFFI v1.4.11+
2269         * db-odbc/*.lisp: Add ODBC3 function SQLSetEnvAttr
2270         to explicitly set ODBC2 support. Add BIGINT support.
2271         Add result-types support. Added SQLTables.
2272         Fix array type in fetch-all-rows. Make width
2273         changable by database or query.
2274         * base/utils.lisp: Add process functions
2275         * base/package.lisp: Export utils to CLSQL-BASE-SYS
2276         * db-aodbc: Implement sequence functions,
2277         database-list-tables, database-list-attributes
2278         * tests/utils.lisp: Add support for ODBC backend,
2279         rework READ-SPECS to use +all-db-types+
2280         * db-mysql/mysql-sql.lisp: Use WITHOUT-INTERRUPTS
2281         for SEQUENCE-NEXT
2282         
2283 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2284         * Version 2.6.13. Requires UFFI version 1.4.9
2285         * db-odbc/*.lisp: Further porting.
2286         Pre-alpha code! But, basic query is now working.
2287
2288 13 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2289         * Version 2.6.12
2290         * base/transactions.lisp: Add quote for macro
2291         expansion of WITH-TRANSACTIONS [Time Howe]
2292         * db-sqlite/sqlite-sql.lisp: Support memory database
2293         in database-probe [Ng Pheng Siong]
2294         * db-odbc/*.lisp: Initial port to UFFI of SQL-ODBC.
2295         The DBI layer is not finished.
2296         
2297 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2298         * Version 2.6.11
2299         * sql/objects.lisp: add :root-class functionality for
2300         list-classes and add duration type support [Marcus Pearce]
2301         * db-odbc: Add mid-level [DBI] layer
2302
2303 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2304         * Version 2.6.10
2305         * db-aodbc: Add methods for generic functions, some are
2306         not yet implemented.
2307         * clsql-odbc.asd, db-odbc/*.lisp: Initial start of ODBC
2308         support
2309
2310 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2311         * Version 2.6.9
2312         * base/package.lisp: Add missing symbols [Marcus Pearce]
2313
2314 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2315         * Version 2.6.8
2316         * test/test-fddl.lisp: Cleanup fix [Marcus Pearce]
2317         * utils/time.lisp: Multiple fixes [Marcus Pearce]
2318         * sql/sql.lisp: Fix for truncate-database [Marcus Pearce]
2319         
2320 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2321         * Version 2.6.7
2322         * sql/*.lisp: Remove schema versioning cruft
2323         [Marcus Pearce]
2324         * Makefile: Add classic subdirectory
2325         
2326 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2327         * Version 2.6.6
2328         * sql/sql.lisp: Fix TRUNCATE command, bug reported
2329         by Marcus Pearce
2330         * sql/sql.lisp: Remove EXPLAIN function. Postgresql/Oracle
2331         specific and easy for an application to directly support.
2332         Idea from Marcus Pearce.
2333         * base/basic-sql.lisp: Remove DESCRIBE-TABLE top-level 
2334         API as duplicates LIST-ATTRIBUTE-TYPES [Marcus Pearce].
2335         Keep low-level interface for future optimization
2336         supporting LIST-ATTRIBUTE-TYPES command.
2337         * Makefile: Add to db-sqlite and test directories.
2338         Include them in top-level Makefile
2339         
2340 12 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2341         * Version 2.6.5
2342         * sql/relations.lisp: Add missing file
2343         * utils/time.lisp: Fixes/extensions [Marcus Pearce]
2344         * test/test-time.lips: New file [Marcus Pearce]
2345         
2346 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2347         * Version 2.6.4
2348         * test/test-init.lisp: Properly handle object
2349         creation. Close database after use.
2350         * sql/sql.lisp: Make DESCRIBE-TABLE a generic
2351         function so can have methods specialized on
2352         table being a string or an sql-table object.
2353         * base/pool.lisp: Really fix CMUCL locking
2354         
2355 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2356         * Version 2.6.3
2357         * test/test-init.lisp: Signal correctly
2358         if any errors occurred in any test suite
2359         * base/loop-extensions.lisp: Fix error
2360         introduced for Lispworks
2361         * base/pool.lisp: Fix locking for CMUCL
2362         * base/objects.lisp: Remove schema-version cruft
2363         
2364 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2365         * Version 2.6.2: New CLSQL API functions:
2366         DESCRIBE-TABLE AND TRUNCATE-DATABASE
2367         Currently, this are only supported on :postgresql
2368         and :postgresql-socket
2369         * base/database.lisp: automatically load ASDF system
2370         in CONNECT if not already loaded
2371         * base/tests.lisp: disconnect database after testing 
2372         * base/*.lisp: Remove CLOSED-DATABASE type in favor
2373         of storing open/closed status in slot of database
2374         * base/pool.lisp: Support locks for CMUCL, OpenMCL, SBCL
2375         * db-postgresql/postgresql-sql.lisp: add DATABASE-RECONNECT,
2376         DATABASE-DESCRIBE-TABLE
2377         * db-sqlite/sqlite-sql.lisp: Add missing slots in database
2378         * base/conditions: Remove duplicate condition
2379         * db-*/*-sql.lisp: Fill new database slot DATABASE-TYPE
2380         * base/recording.lisp: Add new :QUERY type for recording
2381         
2382 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2383         * Version 2.6.1: documentation fixes, merged
2384         classic-tests into tests
2385
2386 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2387         * Version 2.6.0 released: New API functions
2388         CREATE-DATABASE, DESTORY-DATABASE, PROBE-DATABASE
2389         * doc/ref_clsql.xml: Document new functions
2390         * base/database.lisp: New API functions
2391         * base/conditions.lisp: Added CLSQL-ACCESS-ERROR
2392         * base/utils.lisp: Fix use of position-char.
2393         Add COMMAND-OUTPUT used by backends for running
2394         external programs. Fix parsing of SQL*NET-compatible
2395         connection-specs.
2396         * base/loop-extension.lisp: Simplify package use
2397         for Lispworks and Allegro
2398         * db-*/*-sql.lisp: Added DATABASE-CREATE,
2399         DATABASE-DESTORY, PROBE-DATABASE methods
2400         * tests/test-init.lisp, clasic-tests/tests.lisp:
2401         Use destroy-database and create-database to ensure 
2402         testing with empty database
2403         * tests/test-connection.lisp: Add tests for
2404         parsing of string connection-specs
2405         * examples/run-tests.sh: New file for running
2406         test suite on all installed CL implementations
2407         * examples/clsql-tutorial.lisp: moved from
2408         doc directory
2409         * examples/dot.clsql-tests.config: New file
2410         giving an example test configuration
2411         * test/README: Add notes about rtest/ptester
2412         downloads and link to sample test configuration file.
2413         
2414 10 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2415         * Version 2.5.1 released:
2416         * tests/*.lisp: Rework so tests are run
2417         on multiple backends automatically based
2418         on the contents of ~/.clsql-tests.config.
2419         Reuse helper functions from classic-tests.
2420         * base/database.lisp: Support connection-spec
2421         as string for CONNECT
2422         * classic-tests/tests.lisp: Automatically
2423         load database backends as needed. 
2424         
2425 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2426         * Version 2.5.0 released:
2427         All tests for CLSQL and CLSQL-CLASSIC pass
2428         on all platforms.
2429         * base/loop-extension.lisp: Add Lispworks
2430         loop-extension. Improve type specifying on
2431         other platforms.
2432         
2433 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2434         * Version 2.4.2 released:
2435         loop extension now supported on Allegro, all
2436         CLSQL-TESTS pass on Allegro.
2437         * sql/metaclasses.lisp: Some optimization
2438         of compute-slots, be selective when
2439         ordered-class-slots needs to be called
2440         instead of class-slots
2441         * TODO: add URL with documentation on
2442         extending Lispworks LOOP form
2443         
2444 09 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2445         * Version 2.4.1 released: CLSQL-TESt suite passes
2446         all tests for postgresql and CMUCL, SBCL, OpenMCL.
2447         Allegro and Lispworks pass all tests except for
2448         FDML/LOOP/1 since the loop extension have not yet
2449         been ported to those implementions.
2450         * sql/metaclasses.lisp: Added new slot to standard-db-class
2451         to hold user-specified type. OpenMCL adjustments to compensate
2452         for its type-predicate function. Since AllegroCL, Lispworks,
2453         and OpenMCL have different slot orders, added compute-slots
2454         and ordered-class-slots functions so their slot order matches
2455         SBCL/CMUCL.
2456
2457 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2458         * Version 2.4.0 released: All tests for clsql-classic now finish
2459         correctly on Allegro, Lispworks, CMUCL, SBCL, OpenMCL for
2460         mysql, postgresql, postgresql-sockets, and sqlite backends.
2461         * db-mysql/mysql-sql.lisp: Fix array dereferencing
2462         * classic-tests/tests.lisp: Fix package name of
2463         number-to-sql-string. 
2464         * clsql.asd/clsql-tests.asd: Add support for asdf:test-op
2465         * db-sqlite/sqlite-api-{uffi,sql}.lisp: Multiple UFFI fixes,
2466         now passes tests on all support UFFI platforms.
2467         * db-postgresql-socket/postgresql-socket-api.list: Ported to 
2468         SBCL and OpenMCL
2469         * multiple: Finish renaming of :types keyword to :result-types for
2470         greater CommonSQL compatibility, including documentation
2471         * sql/basic-cmds.lisp: Remove obsolete file
2472         
2473 08 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2474         * Version 2.3.3 released
2475         * Fixes for sequences on mysql and sqlite [Marcus Pearce]
2476         * Fixes for uffi sqlite backend [Aurelio Bignoli / Kevin Rosenberg]
2477         * Fix for schema table [Marcus Pearce]
2478         * Add loop extension support for SBCL and OpenMCL [Marcus Pearce]
2479         * Fixes to test suite [Marcus Pearce]
2480
2481 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2482         * db-*/*-sql.lisp: Ensure that expr in
2483         database-query-result-set is a string
2484         * Documentation integration
2485         
2486 06 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2487         * With for Marcus Pearce's excellent work, I've merged
2488         his clsql-usql port into clsql. The original clsql
2489         interface is available in the clsql-classic package.
2490
2491 02 Apr 2004 Kevin Rosenberg (kevin@rosenberg.net)
2492         * Integrate patch from Marcus Pearce <ek735@soi.city.ac.uk>
2493         adding further support for providing backend for UncommonSQL
2494
2495 10 Mar 2004 Kevin Rosenberg (kevin@rosenberg.net)
2496         * Integrate patch from Aurelio Bignoli for SQLite backend
2497
2498 11 Nov 2003 Kevin Rosenberg (kevin@rosenberg.net)
2499         * Converted documentation to XML format
2500         * Made package installable with asdf-install
2501
2502 23 Jul 2003 Kevin Rosenberg (kevin@rosenberg.net)
2503         * Add for-each-row macro
2504
2505 12 Dec 2002 Kevin Rosenberg (kevin@rosenberg.net)
2506         * uffi/clsql-uffi.lisp: return NIL for numeric fields that are NULL
2507         
2508 16 Oct 2002 Kevin Rosenberg (kevin@rosenberg.net)
2509         * Add support for SBCL, OpenMCL, and SCL
2510         * Add *load-truename* to search path for clsql's
2511         compiled libraries.
2512
2513 01 Sep 2002 Kevin Rosenberg (kevin@rosenberg.net)
2514         * Rework use of file types in .asd files
2515
2516 17 Aug 2002 Kevin Rosenberg (kevin@rosenberg.net)
2517         * Add .asd definition files for ASDF users
2518
2519 31 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
2520         * Restructure directories for Common Lisp Controller v3 compatibility
2521
2522 25 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
2523         * Also change case of logical host in loader files
2524         * Rework handling of logical pathnames
2525         
2526 05 Jul 2002 Kevin Rosenberg (kevin@rosenberg.net)
2527         * Change case of logical host
2528         
2529 14 May 2002 Kevin Rosenberg (kevin@rosenberg.net)
2530         * clsql-base.system: Added base package that can be used without
2531         high-level SQL commands. Used for adding support for UncommonSQL.
2532         * *.system: Reworked logical pathnames to be more consistent with
2533         Common Lisp Controller.
2534         * debian/*: Completed initial Debian support
2535         
2536 10 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
2537         * sql/classes.cl:
2538         * sql/transactions.cl:
2539         Added transaction support. Functions/macros added:
2540         with-transaction, commit-transaction, rollback-transaction,
2541         add-transaction-commit-hook, add-transaction-rollback-hook
2542
2543 04 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
2544         * sql/sql.cl:
2545         * sql/pool.cl:
2546         * sql/functional.cl:
2547         Added pool support in connect/disconnect and with-database.
2548         Removed with-db-from-pool as with-database can now works with the connections pool
2549
2550 01 May 2002 Marc Battyani (marc.battyani@fractalconcept.com)
2551         * sql/sql.cl:
2552         * sql/pool.cl:
2553         * sql/classes.cl:
2554         * sql/package.cl:
2555         Completed connection pool.
2556         Added with-db-from-pool macro.
2557         
2558 27 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
2559         * Multiple files:
2560         Added initial support for connection pool
2561         * sql/transactions.cl
2562         Took transaction code from UncommonSQL and integrated
2563         into CLSQL code. See file for disclaimer about why this
2564         was added.
2565
2566 23 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
2567         * interfaces/postgresql/postgresql-sql.cl:
2568         Fix keyword typo in database-read-large-object
2569         * interfaces/mysql/mysql-loader.cl
2570         Fix loading on Win32
2571         * test-suite/tester-clsql.cl
2572         Fix type coercion of double-float
2573         * doc/*
2574         Added debian docbook catalog, made it the default
2575         
2576 19 Apr 2002 Marc Battyani (marc.battyani@fractalconcept.com)
2577         * interface/postgresql/postgresql-api.cl:
2578         * interface/postgresql/postgresql-sql.cl:
2579         * sql/sql.cl:
2580         * sql/db-interface.cl:
2581         Added large objects support for postgresql.
2582
2583 07 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
2584         * src/postgresql-socket/postgresql-socket-api.cl:
2585         Fixed find-foreign-function call, eliminated crypt warning
2586         * Makefiles:
2587         Multiple improvements
2588         * sql/usql.cl:
2589         Moved functionality from low-level interfaces to this file
2590         via generic functions
2591         * test-suite/tester.cl:
2592         Added test with acl-compat-tester, moved others to old-tests
2593         directory.
2594         
2595 06 Apr 2002 Kevin Rosenberg (kevin@rosenberg.net)
2596         * src/usql.cl:
2597         Reinstated commented out sections
2598         * interfaces/postgresql/postgresql-loader.cl:
2599         * interfaces/mysql/mysql-loader.cl:
2600         Updated find-forieign-library support.
2601         * interfaces/postgresql-socket/postgresql-socket-package.cl:
2602         Fixed require form for Lispworks (Thanks Marc Battyani!)
2603         * interfaces/postgresql-socket/postgresql-socket-api.cl:
2604         Fixed eval of def-function for crypt library.
2605                 
2606 31 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2607         * Added interface to support USQL high-level rouines
2608         
2609 29 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2610         * Separated db-interface and conditions from sql/sql.cl
2611         * Improved foreign library loading testing
2612         * interfaces/postgresql/postgresql-api.cl
2613         Added PQisBusy function
2614         * interfaces/clsql-uffi/clsql-uffi.cl
2615         Fixed sign error for 64-bit processing
2616         
2617 27 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2618         * interfaces/postgresql-socket/postgresql-socket-api.cl:
2619         Fixes to read-double-from-socket. Added 64-bit integer support.
2620         * test-suite/xptest-clsql.cl
2621         Added testint for 64-bit integers
2622         * Additons to installation docs
2623         
2624 26 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2625         * interfaces/postgresql-socket/postgresql-socket-api.cl:
2626         Implemented direct socket reading for field type :double
2627         * Added usage information for :types to documentation
2628         * interfaces/mysql/mysql-sql.cl: Fixed type specifiers in atoi,
2629         atol, atof calls
2630         * interfaces/clsql-uffi: Created new directory. Split common
2631         interface routines that use UFFI into this package. Required
2632         especially to support direct reading of 64-bit integers into
2633         bignums and bypassing temporary strings.
2634         * test-clsql.cl: Updated to test postgresql-socket's
2635         read-double-from-socket function.
2636         * test-suite/xptest-clsql.cl
2637         Started work on test suite
2638
2639 25 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2640         * interfaces/mysql/mysql-api.cl: Added mysql-fetch-fields,
2641         mysql-fetch-field-direct Got :auto types working
2642         * interfaces/postgresql/postgresql-api.cl
2643         * interfaces/postgresql-socket/postgresql-socket-api.cl
2644         Added pgsql-field-types enum. Got :auto types working.
2645         * multiple-files
2646         Renamed :field-types to :types.
2647         
2648 24 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2649         * Added field-types parameter to query, database-query,
2650         database-query-result-set, map-query. Haven't added code
2651         to utilize field types, yet.
2652         * Changed postgresql-socket result set from cons to a structure
2653         * Updated test-clsql.cl to use automated testing with a config
2654         file
2655         * Changed return types of field accessors from cstring to
2656         (* :unsigned-char).  This prepares for being able to use specified
2657         type conversions when taking field data into lisp.
2658         * Added field-type processing for most interfaces. Not done yet.
2659         
2660 23 Mar 2002 Kevin Rosenberg (kevin@rosenberg.net)
2661         * doc/ref.sgml: Updated MAP-QUERY example to use
2662         *read-default-float-format* (John Foderaro)
2663         * Extensive work to foreign library loaders and .system files to
2664         check for successful loading of foreign libraries.
2665         * Modified test-clsql.cl to allow more modularity and
2666         automated testing in future release.
2667         * mysql/mysql-sql.lisp: Added field types
2668         
2669 01 Jan 2002 Kevin Rosenberg (kevin@rosenberg.net)
2670         * mysql/mysql-sql.lisp:
2671         - Added support for Allegro CL and Lispworks using UFFI layer
2672         - Changed database-connect to use mysql-real-connect. This way,
2673           can avoid using double (unwind-protect)
2674         - Changed database-connect to have MySQL library allocate space
2675           for MYSQL structure. This will make the code more robust in
2676           the event that MySQL library changes the size of the mysql-mysql
2677           structure.