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