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