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