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