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