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