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