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